Dev-C++ // deposit.cDev-C++ // deposit.c

Posted at 2013. 9. 9. 17:13 | Posted in 카테고리 없음

/*저축액을 계산하는 프로그램*/

#include <stdio.h>

#include <stdlib.h>


int main(void)

{


int salary;

int deposit;


printf("월급을 입력하시오:");

scanf("%d",&salary);


deposit = 10 * 12 * salary;


printf("10년동안의 저축액:%d",deposit);

system("PAUSE");

return 0;

}


stdlib.h 헤드파일과

system("PAUSE");가 추가되었습니다.



system("PAUSE");는 프로그램 자동종료를 막아주는 명령어입니다.


Dev-C++에서 필요합니다.


//