예제의 링크 : codeup.kr/problem.php?id=1015
답안 :
#include <stdio.h>
int main(void)
{
float a;
scanf("%f", &a);
printf("%.2f", a);
return 0;
}
'프로그래밍 > C, C++' 카테고리의 다른 글
[C언어] fgets()를 이용해서 여러줄 문장을 입력받자 (0) | 2021.04.01 |
---|---|
[C언어] 날짜, 연도 형식으로 입력받고 출력하기 (0) | 2021.04.01 |
[C언어] 유니코드 특수문자 출력하기 (0) | 2021.04.01 |
[C언어] ' " ! @ # $ % ^ & * ( ) 출력하기 (0) | 2021.04.01 |
[C#] ToInt, Convert to int (0) | 2021.03.21 |
댓글