?? math.c
字號:
#include <stdio.h>
void main ()
{
int seconds_in_an_hour;
float average;
seconds_in_an_hour = 60 * 60;
average = (5 + 10 + 15 + 20) / 4;
printf("The number of seconds in an hour %d\n",
seconds_in_an_hour);
printf("The average of 5, 10, 15, and 20 is %f\n",
average);
printf("The number of seconds in 48 minutes is %d\n",
seconds_in_an_hour - 12 * 60);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -