728x90
1 2 3 4 5 6 7 8 9 10 11 12 | #include <stdio.h> int main() { float a, b; float i; scanf("%f %f", &a, &b); i = (a * b) / 2; printf("%.1f", i); } | cs |
728x90
'Study > code up' 카테고리의 다른 글
[codeup] 1120 : 세 수의 평균 (0) | 2020.05.01 |
---|---|
[codeup] 1119 : 일을 시간으로 변환 (0) | 2020.05.01 |
[codeup] 1117 : 두 실수의 곱 (0) | 2020.05.01 |
[codeup] 1116 : 사칙연산 계산기 (0) | 2020.05.01 |
[codeup] 1115 : 두 정수의 덧셈 (64비트) (0) | 2020.05.01 |