3131

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

#include <stdio.h>

int main()

{

int cigarette, day, year, total, hour, month, age;


cigarette = 2;//한가치에 2분

day = cigarette * 20; //하루에 한갑

year = day * 365; //365일 핀 담배량

total = year * 20; //20년동안 핀 담배량


age = 365-(total/60/24);


printf("수명은 100살까지이고 20살부터 20년동안 담배를 하루에 한갑을 핀다고 가정하였을때\n\n");

printf("단축된 수명 분량 : %d분\n", total);

printf("단축된 수명 시간량 : %d시간\n", total/60);

printf("단축된 수명 일 : %d일\n", total/60/24);

printf("살수 있는 수명 : 99살 %d일\n", age);

printf("살수 있는 수명 : 99살 %d달 %d일\n", age/30, age%30);


return 0;



}



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

2차 7번  (0) 2013.10.27
2차 수시 2번  (0) 2013.10.27
30  (0) 2013.10.15
29  (0) 2013.10.15
28  (0) 2013.10.15
//

3030

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

#include <stdio.h>

int main()

{

double age, sig, year;


printf("흡연 기간?(단위 : 년) : ");

scanf("%lf", &year);


printf("하루에 몇 개피 핌? : ");

scanf("%lf", &sig);


age = 100-0.0014*sig*365*year;


printf("기대 수명 (평균=100세) : %0.4lf 세\n", age);


return 0;

}



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

2차 수시 2번  (0) 2013.10.27
31  (0) 2013.10.15
29  (0) 2013.10.15
28  (0) 2013.10.15
27  (0) 2013.10.15
//

2929

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

#include <stdio.h>

#define Pi 3.14

int main()

{

double r, min, speed, i;


printf("원형 트랙의 반지름(km): ");

scanf("%lf", &r);


printf("자동차의 속도(Km/h): ");

scanf("%lf", &speed);



i=2*r*Pi;


min=i*60/speed;


printf("자동차가 트랙을 한바퀴 완주하는데 걸리는 시간은 %0.3lf분 입니다.", min);


return 0;


}



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

31  (0) 2013.10.15
30  (0) 2013.10.15
28  (0) 2013.10.15
27  (0) 2013.10.15
26  (0) 2013.10.15
//

2828

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

#include <stdio.h>

int main()

{

int x;


printf("정수 입력 >> ");

scanf("%d", &x);


(x % 2 == 0) ? printf("%d는 짝수입니다.", x) :

  printf("%d는 홀수입니다.", x);


return 0;


}



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

30  (0) 2013.10.15
29  (0) 2013.10.15
27  (0) 2013.10.15
26  (0) 2013.10.15
25  (0) 2013.10.15
//

2727

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

#include <stdio.h>

int main()

{

int c;


printf("input = ");

scanf("%d", &c);


printf("입력한 코드에 해당하는 문자는 %c입니다.", c);


return 0;

}



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

29  (0) 2013.10.15
28  (0) 2013.10.15
26  (0) 2013.10.15
25  (0) 2013.10.15
24  (0) 2013.10.15
//

2626

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

#include <stdio.h>

int main()

{

int i;

float f;

double d;


i=(long)('a'+1.3); 

f=2.49+i;   

d=(double)f*i;   


// 데이터 손실 여부를 확인하기 위해 출력해 봅니다.

printf("%d \n", i);

printf("%lf \n", f);

printf("%lf \n", d);

}



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

28  (0) 2013.10.15
27  (0) 2013.10.15
25  (0) 2013.10.15
24  (0) 2013.10.15
23  (0) 2013.10.15
//

2525

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

#include <stdio.h>

int main()

{

//char c=200;

int c=200;

 

printf("c=%d \n", c);


return 0;

}


char는 200이라는 큰수를 담을 수 없으므로 int를 사용함


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

27  (0) 2013.10.15
26  (0) 2013.10.15
24  (0) 2013.10.15
23  (0) 2013.10.15
22  (0) 2013.10.15
//

2424

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

#include <stdio.h>

int main()

{

//int num; 

double num;


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

//scanf("%d", &num);

scanf("%lf", &num);


//printf("당신이 입력한 수는 %d입니다. \n", num);

printf("당신이 입력한 수는 %.2lf입니다. \n", num);

return 0;

}


수정하는문제


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

26  (0) 2013.10.15
25  (0) 2013.10.15
23  (0) 2013.10.15
22  (0) 2013.10.15
21  (0) 2013.10.15
//

2323

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

int main(void)

#define FEET_RATE 0.3048

{


int feet, meter;


printf("FEET : ");

scanf("%d", &feet);


meter=FEET_RATE*feet;


printf("%d m", meter);


return 0;

}



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

25  (0) 2013.10.15
24  (0) 2013.10.15
22  (0) 2013.10.15
21  (0) 2013.10.15
20  (0) 2013.10.15
//

2222

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

int main(void)

{

int val1=10;

int val2=10;


printf("선 연산 후 증가 : %d \n", val1++);

printf("다시 한번 출력  : %d \n\n", val1);


printf("선 증가 후 연산 : %d \n", ++val2);

printf("다시 한번 출력  : %d \n\n", val2);



printf("변화된 val1 : %d \n", --val1 + 2);

printf("변화된 val2 : %d \n\n", val2 = val2-- + 2);


return 0;

}



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

24  (0) 2013.10.15
23  (0) 2013.10.15
21  (0) 2013.10.15
20  (0) 2013.10.15
19  (0) 2013.10.14
//