书写helloworld变量常量
Posted xt112233
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了书写helloworld变量常量相关的知识,希望对你有一定的参考价值。
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 }
以上是关于书写helloworld变量常量的主要内容,如果未能解决你的问题,请参考以下文章