1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> int main(void) { double celsius, fahrenheit; // º¯¼ö ¼±¾ð printf("¼·¾¾¿Âµµ="); scanf("%lf", &celsius); // ½Ç¼öÇüÀ¸·Î ÀԷ¹޴´Ù. fahrenheit = celsius * 9. / 5. + 32.0; printf("Ⱦ¾¿Âµµ=%lf \n", fahrenheit); return 0; } | cs |