笔记
g.aojingwen
这个作者很懒,什么都没留下…
展开
-
2021-04-24
如何输出一个数个各个位逆序输出:例123 求个位 -> %10 丢个位 -> /=10 3 12 2 1 ...原创 2021-04-24 18:00:40 · 78 阅读 · 0 评论 -
2020-06-03
break只能在switch/循环语句中使用continue:结束本次循环在while中跳转到判断在for中 跳转到语句3原创 2020-06-03 17:32:01 · 114 阅读 · 0 评论 -
2020-06-03
逗号表达式scanf(“%d”,&n);while(n!=0){sum+=n;scanf(“%d”,&n);}可以改写为while(scanf(“%d”,&n),n!=0){sum+=n;}原创 2020-06-03 17:17:45 · 86 阅读 · 0 评论 -
2020-06-03
循环语句for( ; ; ) 条件可省略while(1) 每次循环都需要判断while( x ) x非0⃣️即为真x不可以省略 如果省略程序报错原创 2020-06-03 17:09:39 · 107 阅读 · 0 评论 -
2020-06-03
函数1.函数的声明例 bool is_leapyear (int year);year 可省略2.函数的定义Bool is_leapyear (int year){}3.函数的调用is_leapyear(year)原创 2020-06-03 17:03:32 · 110 阅读 · 0 评论 -
const
const 一定要要初始化const int a = 1;int const a = 1;const int a[] = {};原创 2020-05-31 18:40:06 · 125 阅读 · 0 评论