NETWORK & SEVER FACTORY

개인 공부 기록

Study/code up

[codeup] 1123 : 섭씨 온도를 화씨 온도로 변환

1nfra 2020. 5. 3. 00:44
728x90
1
2
3
4
5
6
7
8
9
#include <stdio.h>
 
int main() {
    float a,i,b;
    scanf("%f"&a);
    b = 1.8;
    i = b * a + 32;
    printf("%.3f", i);
}
cs
728x90