C++实现游戏2048
用c++实现2048 #include<iostream> #include<random> #include<chrono> #include<conio.h> #define SIZE 4 using namespace std; //菜单 void Menu() { cout << "***********…
C++学习案例记录&分享十二(通讯录系统)
此案例贯穿了基础编程的大部分知识点,最具代表性的案例 通讯录功能介绍 储存数据包括:姓名·性别·年龄·电话·住址 功能有:添加·查询·删除·修改·清空 代码展示 #include <iostream> #define Max 1000 using namespace std; //联系人结构体 struct Person { string m…
c++爱心代码
#include <iostream> #include <string> #include <cstdio> #include <cmath> using namespace std; int main() { int c = 0; system("color 0c"); string str = "I love vick…
C++学习案例记录&分析(冒泡排序)
经典算法冒泡排序 下面给数组进行冒泡排序 #include <iostream> using namespace std; int main() { //数组排列为4,2,8,0,5,7,1,3,9 int arr[] = { 4,2,8,0,5,7,1,3,9 }; cout << "排序前:" << end…
C++学习案例记录&分享八(成绩表)
利用二维数组存储数据并打印 #include <iostream> using namespace std; int main() { string names[3] = { "张三","李四","王五"}; int score[3][3]; //第一个人的成绩 score[0][0] = 100; s…