4번4번

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

#include <stdio.h>

int main()

{

int x, y, s;


printf("가로길이를 입력하세요: ");

scanf("%d", &x);

printf("세로길이를 입력하세요: ");

scanf("%d", &y);


s=x*y;


printf("직사각형의 넓이는 %d입니다.", s);


return 0;

}

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

6번  (0) 2013.10.14
5번  (0) 2013.10.14
3번  (0) 2013.10.14
5장 연습문제 11번  (0) 2013.10.14
변수  (0) 2013.10.10
//