Jungol Algorithm/Language Coder

[정올 CODE 514] 입력 - 자가진단6

치조 2017. 9. 24. 11:44
반응형

514 : 입력 - 자가진단6

제한시간: 1000 ms    메모리제한: 0 MB
해결횟수: 5724 회    시도횟수: 15758 회   


 

키를 입력받아 출력하는 프로그램을 작성하라.

 


 

 [Copy]
height = 170
 [Copy]
Your height is 170cm.


 





#include <stdio.h>

int main(){

int a;

printf("height = ");

scanf("%d",&a);

printf("Your height is %dcm.",a);

}





반응형