C++自学笔记
程序员文章站
2024-03-23 19:17:16
...
01 Hello World!
最近在自学C++,在CSDN上以博客的形式做一下记录,并且督促自己不断学习。如有错误还请各位大佬批评指正!
程序框架
C++基本程序框架如下:
#include<iostream>
using namespace std;
int main()
{
//实现相应功能的程序
system("pause");
return 0;
}
输出
cout << "Hello World!" << endl;
定义常量、变量
定义变量时不要用关键字给变量或者常量起名称。
变量
//变量
int a = 10; //也可以是short、long、long long型的
cout << "a="<<a << endl;
常量
常量有两种定义方式,分别用define和const定义。
#include<iostream>
using namespace std;
#define day 7 //day是常量,一旦修改就会报错
int main()
{
//用define定义
cout << "一周总共有:" << day << "天" << endl;
//用const定义
const int month = 12; //const修饰的变量也是常量
cout << "一年总共有:" << month << "个月" << endl;
system("pause");
return 0;
}
标识符命名规则
1 标识符不可以是关键字
2 由字母、数字、下划线构成
3 第一个字符是字母或下划线
4 区分大小写
int Day = 90;
cout << "我们在一起" << Day << "天了" << endl;
cout << "我们在一起" << day << "天了" << endl; //改成day就会报错
简单的例子
#include<iostream>
using namespace std;
int main()
{
//两个数的和
int a = 10;
int b = 10;
int sum = a + b;
cout <<"sum="<< sum << endl;
system("pause");
return 0;
}
上一篇: 我的第一个Python程序