W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
#include
typedef float Temperature; int main() { Temperature today = 25.5; Temperature tomorrow = 18.6; printf("今天:%.1f 摄氏度\n", today); printf("明天:%.1f 摄氏度\n", tomorrow); return 0; }