摘要: 数组 | 04 程序 = 逻辑 + 数据,数组是存储数据的强而有力的手段. 数组的定义 数组的定义非常简单,就是一个变量后面加上一个[],中括号中写上数组长度. int a[100],b[10]; // int数组 float c[11]; double d[13]; char e[14]; // 阅读全文
posted @ 2020-11-08 19:14 RowryCho 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 循环语句 | 03 for while do...while 习题三 偶数 #include<iostream> using namespace std; int main(){ for(int i=1;i<=100;i++) if(!(i&1))cout << i << endl; return 阅读全文
posted @ 2020-11-08 11:57 RowryCho 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 判断语句 | 02 printf的格式输出 可以使用%5d这样来补空格,还有就是%05d这样子可以补0,还有%-5d是从右边补0 int a = 1,b=12,c=123; printf("%5d\n",a); // 1 printf("%05d\n",a); // 00012 printf("%- 阅读全文
posted @ 2020-11-08 08:44 RowryCho 阅读(427) 评论(0) 推荐(0) 编辑