⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex0521.cpp

📁 《C++编程习题与解答》书中所有例题与习题的源代码
💻 CPP
字号:
//  Programming with C++, Second Edition, by John R. Hubbard
//  Copyright McGraw-Hill, 2000
//  Example 5.21 on page 108
//  Nested and parallel scopes

#include <iostream>  // defines the cin and cout objects
using namespace std;

void f();    // f() is global
void g();    // g() is global
int x = 11;  // this x is global

int main()
{ int x = 22;
  { int x = 33;
    cout << "In block inside main(): x = " << x << endl;
  }                                    // end scope of internal block
  cout << "In main(): x = " << x << endl;
  cout << "In main(): ::x = " << ::x << endl;    // accesses global x
  f();
  g();
}                                              // end scope of main()

void f()
{ int x = 44;
  cout << "In f(): x = " << x << endl;
}                                                 // end scope of f()

void g()
{ cout << "In g(): x = " << x << endl;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -