标签:isp lap end define pre class cout src ffffff
C++中的输出
cout<<
1 #include <iostream> 2 using namespace std; 3 4 int main()//程序入口,必须存在,但只能有一个 5 { 6 7 //cout打印 endl结束换行 8 cout << "hello world" << endl; 9 10 11 system("pause"); 12 return 0; 13 14 /* 15 多行注释 16 */ 17 18 }
创建变量
变量可以修改
1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 //创建变量 7 int A = 10; 8 9 cout << "A = " << A << endl; 10 11 system("pause"); 12 return 0; 13 14 }
创建常量
常量分为宏常量和修饰的变量
常量是不可以修改的
1 #include <iostream> 2 using namespace std; 3 4 #define Day 7 //不可修改 5 6 int main() 7 { 8 //常量定义方式 9 // 1 #define 宏常量 10 cout << "一周一共有:" << Day << "天" << endl; //运用宏常量 11 12 // 2 const 修饰的变量 13 const int month = 12; //不可修改 14 cout << "一年共有" << month << "个月" << endl; //运用修饰的变量 15 16 17 system("pause"); 18 return 0; 19 20 }
标签:isp lap end define pre class cout src ffffff
原文地址:https://www.cnblogs.com/xt112233/p/13024142.html