首先,我们先来学如何写简单框架。
#include<iostream>//头文件包
using namespace std;//命名空间
int main()//函数
{
return 0;//结束
}
然后是各种定义!
int n;//整数
double n;//浮点数组
long n;//较长数组
long long n;//长数组
char n;//字符
bool n;//布尔
//巴拉巴拉的多了去了!
输入输出
cin>>n;//输入
cout<<n;//输出
cout<<n<<endl;//输出后换行
cout<<endl;//换行(还有别的方法,自己探索)
循环
for(int i;i>=n;i++)
{
/*语句*/
}
int i;
while(i=n)
{
/*语句*/
}
//这里只给大家展示两种
判断
if(/*条件*/)//如果…则
{
/*语句*/
}
else if(/*条件*/)//上个条件不满足,如果…满足则
{
/*语句*/
}
else//否则
{
/*语句*/
}
//不是都要写的
学会以上几点就是你就入门了!
祝你平安!