📄 age.htm
字号:
<html><font size="+1"><pre>
/* age.c: Comments on your age */
#include <stdio.h>
int main() {
int age;
puts("Enter your age:");
scanf("%d", &age);
if (age < 20)
puts("youth");
else if (age < 40)
puts("prime");
else if (age < 60)
puts("aches and pains");
else if (age < 80)
puts("golden");
else {
char really;
printf("Are you really %d?\n", age);
scanf(" %c", &really);
if (really == 'Y' || really == 'y')
puts("Congratulations!");
else
puts("I didn't think so!");
}
return 0;
}
</pre></font></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -