본문 바로가기

알고리즘 문제 풀기/Codeup

Codeup 1117 - 두 실수의 곱

http://codeup.kr/JudgeOnline/problem.php?id=1117

Codeup 1117 - 두 실수의 곱


1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
 
int main()
{
    float num1, num2;
 
    scanf("%f %f"&num1, &num2);
 
    printf("%.2f\n", num1 * num2);
 
    return 0;
}
cs