L1-065
输入格式:
本题没有输入。
输出格式:
在一行中输出 Talk is cheap. Show me the code.。
#include#include int main() { printf("Talk is cheap. Show me the code."); return 0; }
L1-066
输入格式:输入在第一行中给出 3 个不超过 100 的正整数,分别对应容器的长、宽、高。
输出格式:在一行中输出猫的体积。
#include#include int main() { int a,b ,c,v; scanf("%d %d %d",&a,&b,&c); v=a*b*c; printf("%d",v); return 0; }
L1-073 人与神 (5 分)
输出格式:在一行中输出 To iterate is human, to recurse divine.。
#include#include int main() { printf("To iterate is human, to recurse divine."); return 0; }
L1-074
输入格式:输入在一行中给出 3 个正整数,分别是 N(不超过 400 000),教科书的总字数;K(不超过 3 000),是宝宝每分钟能看的字数;M(不超过 120),是宝宝看书的分钟数。
题目保证宝宝看完的字数不超过 N。
输出格式:在一行中输出宝宝还没有看的字数。
主要思路
未看到的字数=N-K*M
#include#include int main() { int a,b,c,x; scanf("%d %d %d",&a,&b,&c); x=a-b*c; printf("%d",x); return 0; }



