自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(4)
  • 收藏
  • 关注

原创 C++ 列举四位数以内回文数(也可计算五位数内任意位数回文数)

问题 ·任意四位数以内回文数(也可计算五位数内任意位数回文数) #include<iostream> #include<cmath> #include<iomanip> #include<string> #include"windows.h" using namespace std; void find_huiwen_1(int); void find_huiwen_2(int); void find_huiwen_3(int); void find_huiw

2020-11-12 17:53:27 1011

原创 C++ 两个任务:程序替代strcat()函数 在字符串中查找指定的第一个字母位置

两个任务 ·编程替代strcat()函数 ·在字符串中查找指定的第一个字母位置 #include<iostream> #include<string> using namespace std; void main() { int a,i,l,m,n; char ch; cout<<"in this system, you have two choices to feel the magic of c++:"<<endl; cout<<"1,

2020-11-12 17:52:24 589

原创 C++ 飞机乘客信息录入系统

问题 ·飞机乘客信息录入系统 #include<iostream> #include<iomanip> #include<string> using namespace std; struct passenger { int num; char name[10]; int age; char sex; double weight; double luggage; char meal; }; void main() {///// in

2020-11-12 17:51:22 478 1

原创 C++ 自由定义矩阵相乘

自由定义矩阵相乘 #include using namespace std; void main() { int a[10][10]={0},b[10][10]={0},c[10][10]={0}; int i,j,m,n,k,x,y; cout<<“please input the matrex_a that is mn and matrex_b that is nm”<<endl; cout<<“please input m and n”<<endl; c

2020-11-12 16:38:22 254

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除