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

‘,’之后要留空格,如 Function(x, y, z)

时间:2018-08-03 14:46:48      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:全局变量   str   变量   ace   OLE   结束   getc   loop   cout   

‘,’之后要留空格,如 Function(x, y, z)。如果‘;’不是一行的结束 符号,其后要留空格,如 for (initialization; condition; update)。

 

 1 #include <iostream>
 2 
 3 /* run this program using the console pauser or add your own getch, system("pause") or input loop */
 4 using namespace std;
 5 //声明全局变量并初始化
 6 extern int a[]={1,2,3};
 7 extern float p=3.14;
 8 
 9 //在show()函数中使用外部变量
10 show()  {
11     int i;
12     cout<<"In show():"<<endl;
13     cout<<"p="<<p<<endl;
14     cout<<"a[]: ";
15     for (i=0;i<=2;i++) 
16         cout<<a[i]<<"  ";
17     cout<<endl;
18     //cout<<"y="<<y<<endl; 编译出错!
19 }
20 
21 //声明外部变量并初始化
22 int y=5678;
23 
24 int main(int argc, char** argv) {
25     
26         //声明局部变量
27     int i,p=100;
28 
29     //显示重名变量
30     cout<<"In main():"<<endl;
31     cout<<"p="<<p<<endl;
32 
33     //显示全局变量
34     cout<<"::p="<<::p<<endl;
35     cout<<"a[]: ";
36     for (i=0;i<=2;i++)
37         cout<<a[i]<<"  ";
38     cout<<endl;
39     cout<<"y="<<y<<endl;   //编译正确!
40 
41     show();  //调用函数
42     return 0;
43 }

 

‘,’之后要留空格,如 Function(x, y, z)

标签:全局变量   str   变量   ace   OLE   结束   getc   loop   cout   

原文地址:https://www.cnblogs.com/borter/p/9413183.html

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