2121

Posted at 2013. 10. 15. 01:31 | Posted in 2학기/C언어

#include <stdio.h>

int main()

{

int h, m, s, total;


printf("시, 분, 초를 차례대로 입력: ");

scanf("%d %d %d", &h, &m, &s);


total=(3600*h)+(60*m)+s;


printf("%d 초\n", total);

return 0;

}

'2학기 > C언어' 카테고리의 다른 글

23  (0) 2013.10.15
22  (0) 2013.10.15
20  (0) 2013.10.15
19  (0) 2013.10.14
18  (0) 2013.10.14
//

2020

Posted at 2013. 10. 15. 01:26 | Posted in 2학기/C언어

#include <stdio.h>

int main()

{

double dollar, won, rate;


printf("환전할 금액(달러)을 입력해주세요: ");

scanf("%lf", &dollar);


rate = 1093.5;


won = rate*dollar;


printf("환전된 금액:%0.2lf 원", won);


return 0;

}

'2학기 > C언어' 카테고리의 다른 글

22  (0) 2013.10.15
21  (0) 2013.10.15
19  (0) 2013.10.14
18  (0) 2013.10.14
17  (0) 2013.10.14
//

1919

Posted at 2013. 10. 14. 17:10 | Posted in 2학기/C언어

#include <stdio.h>

int main(void)

{

int x, y, z, a, b, c;


printf("세 정수를 입력하세요 : ");

scanf("%d %d %d", &x, &y, &z);


printf("input a : %d\n", x);

printf("input b : %d\n", y);

printf("input c : %d\n", z);


a = (x>y)?x:y;

b = (y>z)?y:z;

c = (a>b)?a:b;


printf("Result : %d\n", c);



return 0; 


}



'2학기 > C언어' 카테고리의 다른 글

21  (0) 2013.10.15
20  (0) 2013.10.15
18  (0) 2013.10.14
17  (0) 2013.10.14
16  (0) 2013.10.14
//

1818

Posted at 2013. 10. 14. 16:58 | Posted in 2학기/C언어

int main() 

{

int x=3, y=5, z=3, k=2;

int a;


a = x < y || x < z && z < k;

printf("결과 값 1 -> a : %d \n", a);


a = (x < y || x < z) && z < k;

printf("결과 값 2 -> a : %d \n", a);


return 0;

}


'2학기 > C언어' 카테고리의 다른 글

20  (0) 2013.10.15
19  (0) 2013.10.14
17  (0) 2013.10.14
16  (0) 2013.10.14
15번  (0) 2013.10.14
//

1717

Posted at 2013. 10. 14. 16:57 | Posted in 2학기/C언어

#include <stdio.h>

int main(void)

{

int x, y;


printf("두 정수를 입력하세요 : ");

scanf("%d %d", &x, &y);



printf("input = %d\n", x);

printf("input = %d\n", y);

printf((x == y) ? printf("같음"): printf("Smaller Number : %d ", (x > y) ? y : x));


return 0; 


}


'2학기 > C언어' 카테고리의 다른 글

19  (0) 2013.10.14
18  (0) 2013.10.14
16  (0) 2013.10.14
15번  (0) 2013.10.14
14번  (0) 2013.10.14
//

1616

Posted at 2013. 10. 14. 16:35 | Posted in 2학기/C언어

#include <stdio.h>

int main(void)

{

int x, y, z;


printf("3개의 정수를 입력하시오 : ");

scanf("%d %d %d", &x, &y, &z);


printf("input x : %d\n", x);

printf("input y : %d\n", y);

printf("input z : %d\n", z);

printf("(x+y)*(x+z)/(y%z) = %d\n", (x+y)*(x+z)/(y%z));


return 0;


}


'2학기 > C언어' 카테고리의 다른 글

18  (0) 2013.10.14
17  (0) 2013.10.14
15번  (0) 2013.10.14
14번  (0) 2013.10.14
13번  (0) 2013.10.14
//

15번15번

Posted at 2013. 10. 14. 16:28 | Posted in 2학기/C언어

int main(void)

{

int val1=10;

int val2=12;

int result1, result2, result3;


result1=(val1==10 && val2==12);

result2=(val1<12 || val2>12);

result3=(!val1);

printf("result1 : %d \n", result1);

printf("result2 : %d \n", result2);

printf("result3 : %d \n", result3);


return 0;

}


'2학기 > C언어' 카테고리의 다른 글

17  (0) 2013.10.14
16  (0) 2013.10.14
14번  (0) 2013.10.14
13번  (0) 2013.10.14
12번  (0) 2013.10.14
//

14번14번

Posted at 2013. 10. 14. 16:25 | Posted in 2학기/C언어

#include <stdio.h>

int main()

{

char lower = 97, upper;

upper = lower-32;


printf("lower case : %c , upper case : %c \n", lower, upper);


return 0;

}


'2학기 > C언어' 카테고리의 다른 글

16  (0) 2013.10.14
15번  (0) 2013.10.14
13번  (0) 2013.10.14
12번  (0) 2013.10.14
11번  (0) 2013.10.14
//

13번13번

Posted at 2013. 10. 14. 16:20 | Posted in 2학기/C언어

#include <stdio.h>

int main()

{

  int x = 1, y = 2, z = 3;

  printf("%d\n", 10 * 2 / 5 * 2); 

  printf("%d\n", 10 - 2 * 5 + 2 / 2); 

  printf("%d\n", ++x * z--); 

  printf("%d\n", x + z >= z + !y); 

  printf("%d\n", x || y && z); 

  printf("%d\n", z += x >> (2 + ++y)); 

  printf("%d\n", x = y = z = 5); 

  printf("%d\n", (x = 1 + 2, 2 - 1)); 

  return 0;

}

'2학기 > C언어' 카테고리의 다른 글

15번  (0) 2013.10.14
14번  (0) 2013.10.14
12번  (0) 2013.10.14
11번  (0) 2013.10.14
10번  (0) 2013.10.14
//

12번12번

Posted at 2013. 10. 14. 16:15 | Posted in 2학기/C언어

#include <stdio.h>


#define AGE_1 20

#define AGE_2 18


int main()

{

const int YEAR_CURRENT = 2010;

const int YEAR_1 = 1990;

const int YEAR_2 = 1992;


printf("올해는 %d년 입니다. \n", YEAR_CURRENT);

printf("내 나이는 %d살입니다. \n", AGE_1);

printf("나는 %d에태어나 %d번째 해가 되었습니다. \n", YEAR_1, AGE_1);

printf("내 동생의 나이는 %d살입니다. \n", AGE_2);

printf("내 동생은 %d년에 태어나 %d번째 해가 되었습니다. \n", YEAR_2, AGE_2);


return 0;


}



'2학기 > C언어' 카테고리의 다른 글

14번  (0) 2013.10.14
13번  (0) 2013.10.14
11번  (0) 2013.10.14
10번  (0) 2013.10.14
9번  (0) 2013.10.14
//