书写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 }
HelloWorld

 

创建变量

变量可以修改

技术图片
 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变量常量的主要内容,如果未能解决你的问题,请参考以下文章

代码规范

Matlab代码书写规范

Matlab代码书写规范

Matlab代码书写规范

Matlab代码书写规范

Java全栈学习路线