2022年9月1日

摘要: #include<stdio.h>main(){ int a,b,c; scanf("%d %d",&a,&b); c=a+b; printf("%d",c);} 阅读全文

posted @ 2022-09-01 23:06 lachesism 阅读(1035) 评论(0) 推荐(0)

摘要: #include <stdio.h> main() { int n,m; scanf("%d%d",&n,&m); printf("%d %d\n",n,m); } 阅读全文

posted @ 2022-09-01 23:05 lachesism 阅读(210) 评论(0) 推荐(0)

摘要: #include<stdio.h>int main(){ int n,a,b,c; scanf("%d",&n); a=n/100; b=(n/10)%10; c=n%10; printf("%d %d %d",c,b,a);} 阅读全文

posted @ 2022-09-01 23:03 lachesism 阅读(2266) 评论(0) 推荐(0)

摘要: #include<stdio.h> main() { printf(" *\n ***\n *****\n *******\n*********\n"); } 阅读全文

posted @ 2022-09-01 22:24 lachesism 阅读(779) 评论(0) 推荐(0)

摘要: #include<stdio.h> main() { int n,m,sum,ca,chen; scanf("%d %d",&n,&m); sum=n+m; ca=n-m; chen=n*m; printf("%d %d %d\n",sum,ca,chen); printf("%d\n%d\n%d" 阅读全文

posted @ 2022-09-01 22:23 lachesism 阅读(163) 评论(0) 推荐(0)

摘要: #include<stdio.h> main() { int x,b,m; scanf("%d",&x); b=x+28; m=b-2; printf("%d %d",b,m); } 阅读全文

posted @ 2022-09-01 22:22 lachesism 阅读(209) 评论(0) 推荐(0)

摘要: #include <stdio.h>main(){ printf("He said,\"hello, world\""); } 阅读全文

posted @ 2022-09-01 22:20 lachesism 阅读(99) 评论(0) 推荐(0)

摘要: #include <stdio.h> main() { printf("张三"); printf(" zhangsan@hotmail.com"); } 阅读全文

posted @ 2022-09-01 22:19 lachesism 阅读(171) 评论(0) 推荐(0)

摘要: #include <stdio.h> main() { printf("李四 lisi@hotmail.com"); } 阅读全文

posted @ 2022-09-01 22:17 lachesism 阅读(190) 评论(0) 推荐(0)