摘要:
1 #include<stdio.h> 2 int main(void) 3 { 4 int now, delay; 5 int minutes; 6 int after_hour, after_minute; 7 8 scanf("%d %d", &now, &delay); 9 minutes 阅读全文
posted @ 2020-05-06 14:47
jason2018
阅读(265)
评论(0)
推荐(0)
摘要:
1 /* 2 邮件:xuejineng2016@163.com 3 2020年5月5日 4 这是一个前导0的问题 5 */ 6 #include<stdio.h> 7 int main(void) 8 { 9 int year, month, day; 10 11 scanf("%d-%d-%d", 阅读全文
posted @ 2020-05-06 11:25
jason2018
阅读(93)
评论(0)
推荐(0)
摘要:
1 /* 2 邮件:xuejineng2016@163.com 3 2020年5月5日 4 5 */ 6 #include<stdio.h> 7 int main(void) 8 { 9 int a, b; 10 scanf("%d %d", &a, &b); 11 12 printf("%d + 阅读全文
posted @ 2020-05-06 11:15
jason2018
阅读(294)
评论(0)
推荐(0)
摘要:
1 /* 2 邮件:xuejineng2016@163.com 3 2020年5月5日 4 将华氏度转换为摄氏度 5 */ 6 #include<stdio.h> 7 int main(void) 8 { 9 int celsius, fahr; 10 11 scanf("%d", &fahr); 阅读全文
posted @ 2020-05-06 10:07
jason2018
阅读(307)
评论(0)
推荐(0)
摘要:
1 /* 2 QQ:778138708 3 2020年5月5日 4 */ 5 #include<stdio.h> 6 int main(void) 7 { 8 const int N = 4; //倒三角形的行数 9 for (int i = 0; i < N; i++) 10 { 11 for ( 阅读全文
posted @ 2020-05-06 09:53
jason2018
阅读(443)
评论(0)
推荐(0)
摘要:
1 /* 2 QQ:778138708 3 2020年5月6日 4 厘米换算英尺英寸 5 思路:将输入的厘米数换成浮点数形式的英尺,然后求整数形式的英尺和英寸 6 */ 7 #include <stdio.h> 8 int main(void) 9 { 10 int centimeter; 11 i 阅读全文
posted @ 2020-05-06 09:40
jason2018
阅读(955)
评论(0)
推荐(0)

浙公网安备 33010602011771号