소스 파일명: testIfCPP.cpp

  1. #include <iostream>
  2. #include <cmath>        // atof() 함수 사용을 위해
  3. using namespace std;    // cout 사용을 위해
  4. // 사용법 표시 함수
  5. void printUsing() {
  6.     cout << "Using: testIfCPP [number]\n";
  7.     cout << "This determines whether the number is positive or not.\n";
  8. }
  9. // main 함수
  10. int main(int argc, char *argv[]) {
  11.     float val;
  12.     if (argc != 2) {
  13.         printUsing();
  14.         exit(1);
  15.         return 1;
  16.     }
  17.     // 명령행 인자의 스트링을 가져와서
  18.     // 배정밀도 부동소수점수로 변환하여
  19.     // 변수 val에 저장한다.
  20.     val = atof(argv[1]);
  21.     // 변수 val에 저장된 값이 양수인지 음수인지 0인지를
  22.     // 판단하는 if...else... 조건문
  23.     if (val > 0.0)
  24.         cout << val << " is a positive number.\n";
  25.     else if (val < 0.0)
  26.         cout << val << " is a negative number.\n";
  27.     else
  28.         cout << val << " is zero.\n";
  29.     return 0;
  30. }

컴파일> cl /GX testIfCPP.cpp

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

실행> testIfCPP 1.234
1.234 is a positive number.

실행> testIfCPP 1.234
-1.234 is a negative number.

실행> testIfCPP 0
0 is zero.



※ Ch 5.5를 사용하여 컴피일 과정 없이 소스를 실행시키려면 인클루드문

        #incldue <cmath>



        #incldue <math.h>

로 고치면 된다. 그대신 부동소수점수의 출력이 다소 다르다.



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

실행> ch testCPP.cpp 2.7
2.7000 is a positive number.

실행> ch testCPP.cpp -2.7
-2.7000 is a negative number.

실행> ch testCPP.cpp 0
0 is zero.




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

Posted by Scripter
,