打印HelloWorld
#include <iostream> using namespace std; int main() { cout << "hello world" << endl; system("pause"); return 0; }
一、常量
作用: 用于记录程序中不可更改的数据C++定义常量两种方式
1.#define 宏常量: #define 常量名 常量值
通常在文件上方定义,表示一个常量2.const修饰的变量 const 数据类型 常量名 常量值
通常在变量定义前加关键字const,修饰该变量为常量,不可修改#include<iostream> using namespace std; #define day 7 int main() { cout << "一周总共有" << day << "天"<<endl; const int month = 12; cout << "一年总共有" << month << "月" << endl; system("pause"); return 0; }
二、数据的输入
作用:用于从键盘获取数据
关键字: cin
语法:cin >>变量
#include<iostream> using namespace std; #include<string> int main() { //1.整型 int a = 0; cout << "请给整型变量a赋值" << endl; cin >> a; cout << "整型变量a=" << a << endl; //2.浮点型 float f = 3.14f; cout << "请给浮点型变量f赋值" << endl; cin >> f; cout << "浮点型变量f=" << f << endl; //3.字符型 char c = 'a'; cout << "请给字符型变量c赋值" << endl; cin >> c; cout << "字符型变量c=" << c << endl; //4.字符串型 string str = "abc"; cout << "请给字符串型变量str赋值" << endl; cin >> str; cout << "字符串型变量str=" << str << endl; //5.布尔型 bool flag = true; cout << "请给布尔型变量b赋值" << endl; cin >> flag; cout << "布尔型变量b=" << flag << endl; system("pause"); return 0; }