다항식 p(x) 를 1차 다항식 x - a 로 나눌 때의 몫과 나머지를 구하는 조립제법을
C# 언어로 구현해 보았다. 조립제법은 일명 Horner의 방법이라고도 불리우는데, 이는
x = a 에서 다항식 p(x)의 값 p(a)을 계산하는 가장 빠른 알고리즘이기도 하다.

         p(x) = (x - a)q(x) + r

여기서 r은 나머지이며 r = p(a) 이다. 또 q(x)는 몫이다.

[참고]
    * 온라인으로 조립제법 표 만들기 손으로 계산하는 조립제법 표 
    * 온라인으로 구하는 다항식의 도함수: 조립제법을 이용한 다항식의 도함수

  1. /*
  2.  *  Filename: TestSyntheticMethod.cs
  3.  *
  4.  *  Purpose:  Find the quotient and remainder when some polynomial is
  5.  *            divided by a monic polynomial of the first degree.
  6.  *
  7.  *  Compile: csc TestSyntheticMethod.cs
  8.  *
  9.  *  Execute: TestSyntheticMethod -2 1 3 3 1
  10.  */
  11. using System;
  12. namespace MyTestApplication1 {
  13.     public class TestSyntheticMethod {
  14.         // 사용법 표시
  15.         public static void PrintUsage() {
  16.              Console.WriteLine("사용법: TestSyntheticMethod [수] [피제식의 계수들]");
  17.              Console.WriteLine("조립제법(synthetic method)에 의한 다항식 나눗셈 결과를 보여준다.");
  18.         }
  19.         // 부동소수점수의 표현이 .0 으로 끝나는 경우 이를 잘라낸다.
  20.         public static string Simplify(double v) {
  21.             string t = "" + v;
  22.             if (t.EndsWith(".0"))
  23.                 t = t.Substring(0, t.Length - 2);
  24.             return t;
  25.         }
  26.         // 부동소수점수의 표현이 .0 으로 끝나는 경우 이를 잘라낸다.
  27.         // 전체 문자열 표시 너비는 매개변수 width 로 전달받아 처리한다.
  28.         public static string Simplify(double v, int width) {
  29.             string t = "" + v;
  30.             if (t.EndsWith(".0"))
  31.                 t = t.Substring(0, t.Length - 2);
  32.             int len = t.Length;
  33.             if (len < width)
  34.                 t = "               ".Substring(0, width - len) + t;
  35.             return t;
  36.         }
  37.         // 다항식을 내림차순의 스트링 표현으로 반환
  38.         public static string ToPolyString(double[] c) {
  39.             string t = "";
  40.             if (c.Length > 2) {
  41.                 if (Simplify(c[0]).Equals("1"))
  42.                     t += "x^" + (c.Length-1);
  43.                 else if (Simplify(c[0]).Equals("-1"))
  44.                     t += "-x^" + (c.Length-1);
  45.                 else
  46.                     t += Simplify(c[0]) + " x^" + (c.Length-1);
  47.             }
  48.             else if (c.Length == 2) {
  49.                 if (Simplify(c[0]).Equals("1"))
  50.                     t += "x";
  51.                 else if (Simplify(c[0]).Equals("-1"))
  52.                     t += "-x";
  53.                 else
  54.                     t += Simplify(c[0]) + " x";
  55.             }
  56.             else if (c.Length == 1) {
  57.                 t += Simplify(c[0]);
  58.             }
  59.             for (int i = 1; i < c.Length; i++) {
  60.                 if (c.Length - 1 - i > 1) {
  61.                     if (c[i] > 0.0) {
  62.                         if (Simplify(c[i]).Equals("1"))
  63.                             t += " + " + "x^" + (c.Length - 1 - i);
  64.                         else
  65.                             t += " + " + Simplify(c[i]) + " x^" + (c.Length - 1 - i);
  66.                     }
  67.                     else if (c[i] < 0.0) {
  68.                         if (Simplify(c[i]).Equals("-1"))
  69.                             t += " - " + "x^" + (c.Length - 1 - i);
  70.                         else
  71.                             t += " - " + Simplify(Math.Abs(c[i])) + " x^" + (c.Length - 1 - i);
  72.                     }
  73.                 }
  74.                 else if (c.Length - 1 - i == 1) {
  75.                     if (c[i] > 0.0) {
  76.                         if (Simplify(c[i]).Equals("1"))
  77.                             t += " + " + "x";
  78.                         else
  79.                             t += " + " + Simplify(c[i]) + " x";
  80.                 }
  81.                 else if (c[i] < 0.0) {
  82.                     if (Simplify(c[i]).Equals("-1"))
  83.                         t += " - " + "x";
  84.                     else
  85.                         t += " - " + Simplify(Math.Abs(c[i])) + " x";
  86.                 }
  87.             }
  88.             else if (c.Length - 1 - i == 0) {
  89.                if (c[i] > 0.0) {
  90.                     t += " + " + Simplify(c[i]);
  91.                 }
  92.                 else if (c[i] < 0.0)
  93.                     t += " - " + Simplify(Math.Abs(c[i]));
  94.                 }
  95.             }
  96.             return t;
  97.         }
  98.         // 다항식 나눗셈 결과를
  99.         //     (피제식) = (제식)(몫) + (나마지)
  100.         // 형태로 출력
  101.         public static void PrintDivisionResult(double a, double[] c, double[] b) {
  102.             Console.WriteLine("  " + ToPolyString(c));
  103.             Console.WriteLine();
  104.             Console.Write("    = ( " + ToPolyString( new double[] {1.0, -a} ) + " )");
  105.             double[] tmp = new double[b.Length - 1];
  106.             for (int i = 0; i < tmp.Length; i++) {
  107.                 tmp[i] = b[i];
  108.             }
  109.             Console.Write("( " + ToPolyString(tmp) + " )");
  110.             double r = b[b.Length - 1];
  111.             if (r > 0.0)
  112.                 Console.Write(" + " + Simplify(r));
  113.             else if (r < 0.0)
  114.                 Console.Write(" - " + Simplify(Math.Abs(r)));
  115.             Console.WriteLine();
  116.         }
  117.         // 조립제법 계산표 출력 메소드
  118.         public static void PrintSyntheticTable(double a, double[] c, double[] s, double[] q) {
  119.             Console.Write("       | ");
  120.             Console.Write(Simplify(c[0], 6));
  121.             for (int i = 1; i < c.Length; i++) {
  122.                 Console.Write("  " + Simplify(c[i], 6));
  123.             }
  124.             Console.WriteLine();
  125.             Console.Write(Simplify(a, 6) + " | ");
  126.             Console.Write("        ");
  127.             Console.Write(Simplify(s[1], 6));
  128.             for (int i = 2; i < s.Length; i++) {
  129.                 Console.Write("  " + Simplify(s[i], 6));
  130.             }
  131.             Console.WriteLine();
  132.             Console.Write("       |-");
  133.             for (int i = 0; i < q.Length; i++) {
  134.                 Console.Write("--------");
  135.             }
  136.             Console.WriteLine("");
  137.             Console.Write("         ");
  138.             Console.Write(Simplify(q[0], 6));
  139.             for (int i = 1; i < q.Length; i++) {
  140.                 Console.Write("  " + Simplify(q[i], 6));
  141.             }
  142.             Console.WriteLine();
  143.         }
  144.         // Java 언어의 main 메소드에 해당하는 C# 언어의 Main 메소드
  145.         public static void Main(String[] args) {
  146.             if (args.Length < 3) {
  147.                 PrintUsage();
  148.                 Environment.Exit(1);
  149.             }
  150.             //////////////////////////////////////////////////////
  151.             // 피제식은 c_0 x^n +  c_1 x^(n -1) + ... + c_n
  152.             // 제식은 x -  a
  153.             double a = Convert.ToDouble(args[0]);
  154.             double[] c = new double[args.Length - 1];
  155.             double[] s = new double[c.Length];
  156.             double[] b = new double[c.Length];
  157.             for (int i = 0; i < c.Length; i++) {
  158.                 c[i] = Convert.ToDouble(args[i + 1]);
  159.             }
  160.             //////////////////////////////////////////////////////
  161.             // 조립제법의 주요 부분
  162.             s[0] = 0.0;
  163.             b[0] = c[0];
  164.             for (int i = 1; i < c.Length; i++) {
  165.                 s[i] = b[i-1]*a;
  166.                 b[i] = c[i] + s[i];
  167.             }
  168.             //////////////////////////////////////////////////////
  169.             // 몫의 계수와 나머지를 출력한다.
  170.             Console.Write("몫의 계수는 ");
  171.             for (int i = 0; i < b.Length - 2; i++) {
  172.                 Console.Write(Simplify(b[i]) + ", " );
  173.             }
  174.             Console.Write(Simplify(b[b.Length - 2]));
  175.             Console.WriteLine(" 이고, 나머지는 " + Simplify(b[b.Length - 1]) + " 이다.");
  176.             Console.WriteLine();
  177.             //////////////////////////////////////////////////////
  178.             // 조립제법 표를 출력한다.
  179.             PrintSyntheticTable(a, c, s, b);
  180.             Console.WriteLine();
  181.             //////////////////////////////////////////////////////
  182.             // (피제식) = (제식) x (몫) + (나머지)
  183.             PrintDivisionResult(a, c, b);
  184.         }
  185.     }
  186. }





컴파일> csc TestSyntheticMethod.cs
실행> TestSyntheticMethod 1 2 3 4 5


몫의 계수는 2, 5, 9 이고, 나머지는 14 이다.

       |      2       3       4       5
     1 |              2       5       9
       |---------------------------------
              2       5       9      14

  2 x^3 + 3 x^2 + 4 x + 5
    = ( x - 1 )( 2 x^2 + 5 x + 9 ) + 14



Posted by Scripter
,
  1. /*
  2.  *  Filename: TestForForApp.cs
  3.  *
  4.  *  Compile:  csc TestForForApp.cs
  5.  *  Execute:  TestForForApp
  6.  *
  7.  *  Date:  2009. 1. 16.
  8.  */
  9. using System;
  10. namespace MyTestApplication1 {
  11.     public class TestForForApp {
  12.         // static 선언자가 없으므로 이 메소드는 인스턴스 메소드이다.
  13.         // 인스턴스 메소드는 static 메소드에서는 직접 호출되지 않는다.
  14.         // 반드시 생성된 객체를 거쳐서 호출되어 진다.
  15.         public string[] GetDan(int dan) {
  16.             string[] t = new String[19];
  17.             string sa, sb, sval;
  18.             for (int j = 0; j < 19; j++) {
  19.                 sa = "" + dan;
  20.                 if (sa.Length < 2)
  21.                     sa = " " + sa;
  22.                 sb = "" + (j + 1);
  23.                 if (sb.Length < 2)
  24.                     sb = " " + sb;
  25.                 sval = "" + (dan*(j + 1));
  26.                 if (sval.Length < 2)
  27.                     sval = "  " + sval;
  28.                 else if (sval.Length < 3)
  29.                     sval = " " + sval;
  30.                 t[j] = sa + " x " + sb + " = " + sval;
  31.             }
  32.             return t;
  33.         }
  34.         // 19단표를 모두 80컬럼 컨솔에 출력한다.
  35.         //
  36.         // (static 선언자가 없는) 인스턴스 메소드이므로,
  37.         // 반드시 생성된 객체를 거쳐서 호출되어 진다.
  38.         public void PrintAllNineteenDan() {
  39.             string[][] arr = new string[18][];   // not [18][19] but [18][] in C#
  40.             for (int i = 2; i < 20; i++) {
  41.                 arr[i - 2] = GetDan(i);
  42.             }
  43.             int[] d = new int[] { 2, 7, 11, 16};      // 각 줄단위 블럭의 첫단
  44.             int[] counter = new int[] { 5, 4, 5, 4};  // 각 줄단위 블럭에 속한 단의 개수
  45.             string[] lines = new string[19];
  46.             for (int k = 0; k < d.Length; k++) {
  47.                 // 8-바이트 길이의 한 줄씩 완성
  48.                 for (int i = 0; i < 19; i++) {
  49.                     lines[i] = arr[d[k]-2][i];
  50.                     for (int j = 1; j < counter[k]; j++) {
  51.                         lines[i] += "   " +  arr[d[k]-2+j][i];
  52.                     }
  53.                 }
  54.                 // 80 바이트 길이의 한 줄씩 출력
  55.                 for (int i = 0; i < 19; i++) {
  56.                     Console.WriteLine(lines[i]);
  57.                 }
  58.                 Console.WriteLine();
  59.             }
  60.         }
  61.         // Java 언어의 main 메소드에 해당하는 C# 언어의 Main 메소드
  62.         public static void Main(String[] args) {
  63.             TestForForApp app = new TestForForApp();  // 객체를 생성한다.
  64.             app.PrintAllNineteenDan();    // 객체에 속하는 메소드 printDan()을 호출한다.
  65.         }
  66.     }
  67. }



컴파일> csc TestForForApp.cs
실행> TestForForApp

 2 x  1 =   2    3 x  1 =   3    4 x  1 =   4    5 x  1 =   5    6 x  1 =   6
 2 x  2 =   4    3 x  2 =   6    4 x  2 =   8    5 x  2 =  10    6 x  2 =  12
 2 x  3 =   6    3 x  3 =   9    4 x  3 =  12    5 x  3 =  15    6 x  3 =  18
 2 x  4 =   8    3 x  4 =  12    4 x  4 =  16    5 x  4 =  20    6 x  4 =  24
 2 x  5 =  10    3 x  5 =  15    4 x  5 =  20    5 x  5 =  25    6 x  5 =  30
 2 x  6 =  12    3 x  6 =  18    4 x  6 =  24    5 x  6 =  30    6 x  6 =  36
 2 x  7 =  14    3 x  7 =  21    4 x  7 =  28    5 x  7 =  35    6 x  7 =  42
 2 x  8 =  16    3 x  8 =  24    4 x  8 =  32    5 x  8 =  40    6 x  8 =  48
 2 x  9 =  18    3 x  9 =  27    4 x  9 =  36    5 x  9 =  45    6 x  9 =  54
 2 x 10 =  20    3 x 10 =  30    4 x 10 =  40    5 x 10 =  50    6 x 10 =  60
 2 x 11 =  22    3 x 11 =  33    4 x 11 =  44    5 x 11 =  55    6 x 11 =  66
 2 x 12 =  24    3 x 12 =  36    4 x 12 =  48    5 x 12 =  60    6 x 12 =  72
 2 x 13 =  26    3 x 13 =  39    4 x 13 =  52    5 x 13 =  65    6 x 13 =  78
 2 x 14 =  28    3 x 14 =  42    4 x 14 =  56    5 x 14 =  70    6 x 14 =  84
 2 x 15 =  30    3 x 15 =  45    4 x 15 =  60    5 x 15 =  75    6 x 15 =  90
 2 x 16 =  32    3 x 16 =  48    4 x 16 =  64    5 x 16 =  80    6 x 16 =  96
 2 x 17 =  34    3 x 17 =  51    4 x 17 =  68    5 x 17 =  85    6 x 17 = 102
 2 x 18 =  36    3 x 18 =  54    4 x 18 =  72    5 x 18 =  90    6 x 18 = 108
 2 x 19 =  38    3 x 19 =  57    4 x 19 =  76    5 x 19 =  95    6 x 19 = 114

 7 x  1 =   7    8 x  1 =   8    9 x  1 =   9   10 x  1 =  10
 7 x  2 =  14    8 x  2 =  16    9 x  2 =  18   10 x  2 =  20
 7 x  3 =  21    8 x  3 =  24    9 x  3 =  27   10 x  3 =  30
 7 x  4 =  28    8 x  4 =  32    9 x  4 =  36   10 x  4 =  40
 7 x  5 =  35    8 x  5 =  40    9 x  5 =  45   10 x  5 =  50
 7 x  6 =  42    8 x  6 =  48    9 x  6 =  54   10 x  6 =  60
 7 x  7 =  49    8 x  7 =  56    9 x  7 =  63   10 x  7 =  70
 7 x  8 =  56    8 x  8 =  64    9 x  8 =  72   10 x  8 =  80
 7 x  9 =  63    8 x  9 =  72    9 x  9 =  81   10 x  9 =  90
 7 x 10 =  70    8 x 10 =  80    9 x 10 =  90   10 x 10 = 100
 7 x 11 =  77    8 x 11 =  88    9 x 11 =  99   10 x 11 = 110
 7 x 12 =  84    8 x 12 =  96    9 x 12 = 108   10 x 12 = 120
 7 x 13 =  91    8 x 13 = 104    9 x 13 = 117   10 x 13 = 130
 7 x 14 =  98    8 x 14 = 112    9 x 14 = 126   10 x 14 = 140
 7 x 15 = 105    8 x 15 = 120    9 x 15 = 135   10 x 15 = 150
 7 x 16 = 112    8 x 16 = 128    9 x 16 = 144   10 x 16 = 160
 7 x 17 = 119    8 x 17 = 136    9 x 17 = 153   10 x 17 = 170
 7 x 18 = 126    8 x 18 = 144    9 x 18 = 162   10 x 18 = 180
 7 x 19 = 133    8 x 19 = 152    9 x 19 = 171   10 x 19 = 190

11 x  1 =  11   12 x  1 =  12   13 x  1 =  13   14 x  1 =  14   15 x  1 =  15
11 x  2 =  22   12 x  2 =  24   13 x  2 =  26   14 x  2 =  28   15 x  2 =  30
11 x  3 =  33   12 x  3 =  36   13 x  3 =  39   14 x  3 =  42   15 x  3 =  45
11 x  4 =  44   12 x  4 =  48   13 x  4 =  52   14 x  4 =  56   15 x  4 =  60
11 x  5 =  55   12 x  5 =  60   13 x  5 =  65   14 x  5 =  70   15 x  5 =  75
11 x  6 =  66   12 x  6 =  72   13 x  6 =  78   14 x  6 =  84   15 x  6 =  90
11 x  7 =  77   12 x  7 =  84   13 x  7 =  91   14 x  7 =  98   15 x  7 = 105
11 x  8 =  88   12 x  8 =  96   13 x  8 = 104   14 x  8 = 112   15 x  8 = 120
11 x  9 =  99   12 x  9 = 108   13 x  9 = 117   14 x  9 = 126   15 x  9 = 135
11 x 10 = 110   12 x 10 = 120   13 x 10 = 130   14 x 10 = 140   15 x 10 = 150
11 x 11 = 121   12 x 11 = 132   13 x 11 = 143   14 x 11 = 154   15 x 11 = 165
11 x 12 = 132   12 x 12 = 144   13 x 12 = 156   14 x 12 = 168   15 x 12 = 180
11 x 13 = 143   12 x 13 = 156   13 x 13 = 169   14 x 13 = 182   15 x 13 = 195
11 x 14 = 154   12 x 14 = 168   13 x 14 = 182   14 x 14 = 196   15 x 14 = 210
11 x 15 = 165   12 x 15 = 180   13 x 15 = 195   14 x 15 = 210   15 x 15 = 225
11 x 16 = 176   12 x 16 = 192   13 x 16 = 208   14 x 16 = 224   15 x 16 = 240
11 x 17 = 187   12 x 17 = 204   13 x 17 = 221   14 x 17 = 238   15 x 17 = 255
11 x 18 = 198   12 x 18 = 216   13 x 18 = 234   14 x 18 = 252   15 x 18 = 270
11 x 19 = 209   12 x 19 = 228   13 x 19 = 247   14 x 19 = 266   15 x 19 = 285

16 x  1 =  16   17 x  1 =  17   18 x  1 =  18   19 x  1 =  19
16 x  2 =  32   17 x  2 =  34   18 x  2 =  36   19 x  2 =  38
16 x  3 =  48   17 x  3 =  51   18 x  3 =  54   19 x  3 =  57
16 x  4 =  64   17 x  4 =  68   18 x  4 =  72   19 x  4 =  76
16 x  5 =  80   17 x  5 =  85   18 x  5 =  90   19 x  5 =  95
16 x  6 =  96   17 x  6 = 102   18 x  6 = 108   19 x  6 = 114
16 x  7 = 112   17 x  7 = 119   18 x  7 = 126   19 x  7 = 133
16 x  8 = 128   17 x  8 = 136   18 x  8 = 144   19 x  8 = 152
16 x  9 = 144   17 x  9 = 153   18 x  9 = 162   19 x  9 = 171
16 x 10 = 160   17 x 10 = 170   18 x 10 = 180   19 x 10 = 190
16 x 11 = 176   17 x 11 = 187   18 x 11 = 198   19 x 11 = 209
16 x 12 = 192   17 x 12 = 204   18 x 12 = 216   19 x 12 = 228
16 x 13 = 208   17 x 13 = 221   18 x 13 = 234   19 x 13 = 247
16 x 14 = 224   17 x 14 = 238   18 x 14 = 252   19 x 14 = 266
16 x 15 = 240   17 x 15 = 255   18 x 15 = 270   19 x 15 = 285
16 x 16 = 256   17 x 16 = 272   18 x 16 = 288   19 x 16 = 304
16 x 17 = 272   17 x 17 = 289   18 x 17 = 306   19 x 17 = 323
16 x 18 = 288   17 x 18 = 306   18 x 18 = 324   19 x 18 = 342
16 x 19 = 304   17 x 19 = 323   18 x 19 = 342   19 x 19 = 361


Posted by Scripter
,

소스 파일명: TestWhileLoop.cs

  1. /*
  2.  *  Filename: TestWhileLoop.cs
  3.  *
  4.  *  Purpose:  Example using the while loop syntax
  5.  *                while ....
  6.  *
  7.  *  Compile: csc TestWhileLoop.cs
  8.  *  Execute: TestWhileLoop -200 300
  9.  *
  10.  */
  11. using System;
  12. namespace MyTestApplication1 {
  13.     public class TestWhileLoop {
  14.         // 사용법 표시
  15.         public static void PrintUsage() {
  16.             Console.WriteLine("Using: TestWhileLoop [integer1] [integer2]");
  17.             Console.WriteLine("This finds the greatest common divisor of the given two integers.");
  18.         }
  19.         // Java 언어의 main 메소드에 해당하는 C# 언어의 Main 메소드
  20.         public static void Main(string[] args) {
  21.             if (args.Length != 2) {
  22.                 PrintUsage();
  23.                 Environment.Exit(1);
  24.             }
  25.             ////////////////////////////////////////////////
  26.             // 명령행 인자의 두 스트링을 가져와서
  27.             // 긴정수(long) 즉 Int64 타입으로 변환하여
  28.             // 변수 val1과 val2에 저장한다.
  29.             long val1 = Convert.ToInt64(args[0]);
  30.             long val2 = Convert.ToInt64(args[1]);
  31.             long a, b, q, r, gcd;    // r은 나머지, q는 몫
  32.             // a는 |val1|, |val2| 중 큰 값
  33.             a = Math.Abs(val1);
  34.             b = Math.Abs(val2);
  35.             if (a < b) {
  36.                 a = Math.Abs(val2);
  37.                 b = Math.Abs(val1);
  38.             }
  39.             if (b == 0L) {
  40.                 Console.WriteLine("GCD(" + val1 + ", " + val2 + ") = " + a);
  41.                 Environment.Exit(1);
  42.             }
  43.             ////////////////////////////////////////
  44.             // Euclidean 알고리즘의 시작
  45.             //
  46.             // a를 b로 나누어 몫은 q에, 나머지는 r에 저장
  47.             q = a / b;
  48.             r = a % b;
  49.             ////////////////////////////////////////
  50.             // Euclidean 알고리즘의 반복 (나머지 r이 0이 될 때 까지)
  51.                 while (r != 0L) {
  52.                 a = b;
  53.                 b = r;
  54.                 q = a / b;
  55.                 r = a % b;
  56.             }
  57.             // 나머지가 0이면 그 때 나눈 수(제수) b가 최대공약수(GCD)이다.
  58.             gcd = b;
  59.             // 최대공약수(GCD)를 출력한다.
  60.             Console.WriteLine("GCD(" + val1 + ", " + val2 + ") = " + gcd);
  61.         }
  62.     }
  63. }


컴파일> csc -d . TestWhileLoop.cs

실행> TestWhileLoop
Using: TestWhileLoop [integer1] [integer2]
This finds the greatest common divisor of the given two integers.

실행> TestWhileLoop 200 300
GCD(200, 300) = 100

실행> TestWhileLoop 50 -20
GCD(50, -20) = 10

실행> TestWhileLoop -30 0
GCD(-30, 0) = 30




Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.

Posted by Scripter
,

소스 파일명: TestIfThen.cs

  1. using System;
  2. namespace MyTestApplication1 {
  3.     public class TestIfThen {
  4.         public static void PrintUsing() {
  5.             Console.WriteLine("Using: TestIfThen [number]");
  6.             Console.WriteLine("This determines whether the number is positive or not.");
  7.         }
  8.         // Java 언어의 main 메소드에 해당하는 C# 언어의 Main 메소드
  9.         public static void Main(string[] args) {
  10.             if (args.Length != 1) {
  11.                 PrintUsing();
  12.                 Environment.Exit(0);
  13.             }
  14.             ////////////////////////////////////////////////
  15.             // 명령행 인자의 스트링을 가져와서
  16.             // 배정밀도 부동소수점수로 변환하여
  17.             // 변수 val에 저장한다.
  18.             double val = Convert.ToDouble(args[0]);
  19.             // 변수 val에 저장된 값이 양수인지 음수인지 0인지를
  20.             // 판단하는 if...else... 조건문
  21.             if (val > 0.0)
  22.                 Console.WriteLine(val + " is a positive number.");
  23.             else if (val < 0.0)
  24.                 Console.WriteLine(val + " is a negative number.");
  25.             else
  26.                 Console.WriteLine(val + " is zero.");
  27.         }
  28.     }
  29. }

컴파일> csc TestIfThen.cs

실행> TestIfThen
Using: TestIfThen [number]
This determines whether the number is positive or not.

실행> TestIfThen 2.1
2.1 is a positive number.

실행> TestIfThen -2.1
-2.1 is a negative number.

실행> TestIfThen 0
0.0 is zero.




Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.

Posted by Scripter
,

소스 파일명: TestArguments.cs

  1. using System;
  2. namespace MyTestApplication1 {
  3.     public class TestArguments {
  4.         // Java 언어의 main 메소드에 해당하는 C# 언어의 Main 메소드
  5.         public static void Main(string[] args) {
  6.             double sum = 0.0;    // 초기화
  7.             // 명령행 인자(command-line argument) 개수 출력
  8.             Console.WriteLine("Count of arguments: " + args.Length);
  9.             for (int i = 0; i < args.Length; i++) {
  10.                 // 스트링을 배정밀도 부동소수점수로 변환하여 누적
  11.                 sum += Convert.ToDouble(args[i]);
  12.             }
  13.             // 출력 값이 ".0"으로 끝나는 경우 꼬리 제거하기
  14.             string strSum = "" + sum;
  15.             if (strSum.EndsWith(".0"))
  16.                 strSum = strSum.Substring(0, strSum.Length - 2);
  17.             // 누적된 값을 출력한다.
  18.             Console.WriteLine("The sum of arguments is " + strSum);
  19.         }
  20.     }
  21. }


 

컴파일> csc TestArguments.cs

실행> TestArguments 1 2 3 4
Count of arguments: 4
The sum of arguments is 10

실행> TestArguments 1 2.1 3 4.5
Count of arguments: 4
The sum of arguments is 10.6


Posted by Scripter
,

C# 언어는 Sun 사에서 만든 Java 언어에 대항하여 Microsoft 사에서 만든 프로그래밍 언어로서,
전체적인 개념은 Java의 것과 유사하다.
객체지향(obeject oriented) 언어의 관점에서 보면 다중상속을 지원하지 않고 그대신 인터페이스를 지원한다. Java 언어로 개발한 애플리케이션이 동작할려면 Java 가상기계가 있어야 하듯이 C#으로 개발한 애플리케이션이 동작할려면 닷넷(.NET)이 있어야 한다.

프로그래밍 코딩시에 메소드 이름을 정할 때 Java 언어의 경우 영문 소문자로 시작하는 것이 관습이지만, C# 언어의 경우에는 영문 대문자로 시작하는 것이 관습이다. (여기서 관습이라고 하는 것은 꼭 지켜야 하는 것은 아니지만 그렇게 습관을 들이면 다른 사람들이 코딩한 소스를 볼 때 이해가 빠르다는 의미이다.)

Java 언어에서 import 구문을 쓰면 다른 클래스를 불러와서 쓸 수 있듯이, C#에서는 using 구문을 통하여 이와 비슷한 일을 할 수 있다. Java 언어에는 없지만 C# 언어에서는 namespace 구문이 있어서 이를 이용하면 클래스 관리와 클래스에 속한 메소드와 속성을 용이하게 불러 쓸 있다.

Java 언어에서

      System.out.println(스트링)
      System.out.print(스트링)

에 해당하는 C# 언어의 코드는

      System.Console.WriteLine(스트링)
      System.Console.Write(스트링)

이다. 그런데 using 구문을 이용한다면

using System;
................
................
      Console.WriteLine(스트링)
      Console.Write(스트링)

처럼 System. 을 생략하여 쓸 수 있다.



C# 언어에서 static이라고 하는 예약어는 Java 언어에서의 의미와 동일하다. 즉 static 예약어가 붙은 메소드나 속성은 힙(heap) 메모리에 존재하는 것이 아니라, 정적(static) 메모리에 존재한다.

C# 언어의 메소드 정의 구문 양식은 Java 언어의 것과 유사하게

       [public/private 등] [static] type methodName(parameters) {
             block
       }

이다.

또 C# 언어의 for 반복문 양식도 Java 언어의 것과 유사하게

       for (varName = initialValue; condition; replicator) {
             block
       }

이다.



소스 파일명: ForTest.cs
------------------------------[소스 시작]
using System;

namespace MyTestApplication1 {
    public class ForTest {

        // static 메소드로 선언되었으므로 Main 메소드에서 이 메소드를
        // 객체 생성 없이 직접 호출할 수 있다.
        public static void PrintDan(int dan) {
            for (int i = 1; i < 10; i++) {
                Console.WriteLine(dan + " x " + i + " = " + (dan*i));
            }
        }

        // Java 언어의 main 메소드에 해당하는 C# 언어의 main 메소드
        public static void Main(string[] args) {
            PrintDan(2);    // static 메소드 PrintDan()을 호출한다.
        }
    }
}

------------------------------[소스 끝]

컴파일> csc -d ForTest.cs

(참고: 에러 없이 컴파일이 순조롭게 끝나면 현재 디렉토리에 ForTest.exe 라는 실행 파일이 현재 디렉토리에 생길 것이다.)

실행> ForTest
2 x 1 = 2
2 x 2 = 4
2 x 3 = 6
2 x 4 = 8
2 x 5 = 10
2 x 6 = 12
2 x 7 = 14
2 x 8 = 16
2 x 9 = 18



소스 파일명: ForTestObject.cs
------------------------------[소스 시작]
using System;

namespace MyTestApplication1 {
    public class ForTestObject {

        // static 선언자가 없으므로 이 메소드는
        // 다른 static 메소드에서는 직접 호출되지 않는다.
        // 반드시 생성된 ForTestObject 객체를 거쳐서 호출된다.
        public void PrintDan(int dan) {
            for (int i = 1; i < 10; i++) {
                Console.WriteLine(dan + " x " + i + " = " + (dan*i));
            }
        }

        // Java 언어의 main 메소드에 해당하는 C# 언어의 Main 메소드
        public static void Main(string[] args) {
            ForTestObject app = new ForTestObject();  // 객체를 생성한다.
            app.PrintDan(2);    // 객체에 속하는 메소드 PrintDan()을 호출한다.
        }
    }
}
------------------------------[소스 끝]

컴파일> csc ForTestObject.cs

(참고: 컴파일이 순조롭게 끝나면 현재 디렉토리에 ForTestObject.exe 라는 실행 파일이 생겨 있을 것이다.)

실행> ForTestObject

(참고: 실행 결과는 ForTest 를 실행한 결과와 같다.)





Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.

Posted by Scripter
,