上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 32 下一页
  2021年8月4日
摘要: 1 //结构体案例 2 2 #include<iostream> 3 #include<string> 4 #include<ctime> 5 using namespace std; 6 7 struct Hero 8 { 9 string name; 10 int age; 11 string 阅读全文
posted @ 2021-08-04 11:12 Bytezero! 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 1 //结构体案列 2 3 #include<iostream> 4 #include<string> 5 #include<ctime> 6 using namespace std; 7 8 //学生的结构体 9 struct Student 10 { 11 string sName; 12 in 阅读全文
posted @ 2021-08-04 09:50 Bytezero! 阅读(213) 评论(0) 推荐(0) 编辑
  2021年8月2日
摘要: 1 //嵌套循环 乘法口诀 2 #include <iostream> 3 using namespace std; 4 int main() 5 { 6 int i ,j; 7 for ( i = 1; i <= 9; i++) 8 { 9 for (j = 1; j <= i; j++) 10 阅读全文
posted @ 2021-08-02 14:44 Bytezero! 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 1 // 1-100之间 7的倍数 带7 打印 敲桌子 2 #include <iostream> 3 using namespace std; 4 5 int main() 6 { 7 for (int i = 1; i <= 100; i++) 8 { 9 if(i % 7==0 || i % 阅读全文
posted @ 2021-08-02 13:59 Bytezero! 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 #include <ctime> 3 using namespace std; 4 5 int main() 6 { 7 int num = 100; 8 do 9 { 10 int a = 0; 11 int b = 0; 12 int c = 0; 阅读全文
posted @ 2021-08-02 11:11 Bytezero! 阅读(120) 评论(0) 推荐(0) 编辑
  2021年7月30日
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 /* 5 *模拟实现道具店购物功能(商店暂时只支持一种类型的商品) 6 *商品具备名称,价格,库存等属性 7 *模拟玩家购买游戏道具 8 *1.玩家选择要购买的道具 阅读全文
posted @ 2021-07-30 12:45 Bytezero! 阅读(142) 评论(0) 推荐(0) 编辑
  2021年7月28日
摘要: C语言: C 语言是一种通用的高级语言,最初是由丹尼斯·里奇在贝尔实验室为开发 UNIX 操作系统而设计的。C 语言最开始是于 1972 年在 DEC PDP-11 计算机上被首次实现。 在 1978 年,布莱恩·柯林汉(Brian Kernighan)和丹尼斯·里奇(Dennis Ritchie) 阅读全文
posted @ 2021-07-28 12:35 Bytezero! 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 第一个程序:1 //打印 hello world 2 3 #include <stdio.h> 4 int main() 5 { 6 printf("hello world!\n"); 7 return 0; 8 } 打印结果: 阅读全文
posted @ 2021-07-28 12:34 Bytezero! 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 1 //输出两个字符 #include <stdio.h> 2 int main () 3 { 4 5 int NB = 789; 6 int CB = 333; 7 printf("NB的数字为:%d\n%d:是CB的数字\n",NB,CB); 8 } 阅读全文
posted @ 2021-07-28 12:33 Bytezero! 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 1 //输出长方形的 长 宽 高 和 面积 2 3 #include <stdio.h> 4 int main () 5 { 6 float high = 1.23f; 7 float width = 4.23f; 8 float lengh = 5.56f; 9 10 float ice = hi 阅读全文
posted @ 2021-07-28 12:32 Bytezero! 阅读(232) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 32 下一页