会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
lwl0
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
2024年1月10日
1、输入一个年份 判断是否是闰年;2、输出0-2000年的闰年,并打印总计;
摘要: include<stdio.h> int main() /{ int year; scanf("%d",&year); if(year%40 && year%100!=0) { printf("%d这个年份是闰年\n",year); } else if(year%4000) { printf("%d
阅读全文
posted @ 2024-01-10 10:31 累die
阅读(60)
评论(0)
推荐(0)
2024年1月4日
用for循环和递归的方法计算10的阶乘
摘要: include <stdio.h> int jc (int num); int jc2 (int num); int main() { int n; n = jc(10); printf("%d\n", n); } int jc (int num) { int j = 1, i; for (i =
阅读全文
posted @ 2024-01-04 20:34 累die
阅读(320)
评论(0)
推荐(0)
2024年1月3日
9*9乘法表
摘要: include<stdio.h> int main() {int x,y; for(x=1;x<=9;x++) {for(y=9;y>=x;y--) printf("%d%d=%-3d",x,y,xy); printf("\n"); return 0; }}
阅读全文
posted @ 2024-01-03 22:57 累die
阅读(18)
评论(0)
推荐(0)
2023年12月30日
--在前后的运算方法
摘要: include<stdio.h> int main() { int a=1,b=1; while(a--); printf("%d\n",a); while(--b); printf("%d\n",b); }
阅读全文
posted @ 2023-12-30 15:28 累die
阅读(14)
评论(0)
推荐(0)
2023年12月28日
用sizeof来求数据类型所占内存大小
摘要: include<stdio.h> int main() { int a; char b; double c; printf("%d\n",sizeof a); printf("%d\n",sizeof b); printf("%d\n",sizeof c); printf("%d\n",sizeof
阅读全文
posted @ 2023-12-28 22:13 累die
阅读(47)
评论(0)
推荐(0)
2023年12月27日
比较三个数字的大小
摘要: include<stdio.h> int main() { int a,b,c,d; printf("请输入三个数字:"); scanf("%d %d %d",&a,&b,&c); if(a>b) { d=a;a=b;b=d; } if(a>c) { d=a;a=c;c=d; } if(b>c) {
阅读全文
posted @ 2023-12-27 17:31 累die
阅读(72)
评论(0)
推荐(0)
2023年12月26日
第一个程序hello world
摘要: include<stdio.h> int main() { printf("hello world!\n"); }
阅读全文
posted @ 2023-12-26 17:12 累die
阅读(16)
评论(3)
推荐(0)
上一页
1
2
公告