码迷,mamicode.com
首页 > 其他好文 > 详细

书写helloworld、变量常量

时间:2020-06-01 12:09:52      阅读:78      评论:0      收藏:0      [点我收藏+]

标签: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 }
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、变量常量

标签:isp   lap   end   define   pre   class   cout   src   ffffff   

原文地址:https://www.cnblogs.com/xt112233/p/13024142.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!