📄 pr05004.cpp
字号:
////////////////////////////////////////
// File Name: pr05004.cpp
////////////////////////////////////////
#include <iostream>
// A global variable.
int amount = 123;
////////////////////////////////////////
// The main() function.
////////////////////////////////////////
int main()
{
// A local variable with the same
// name as the global variable.
int amount = 456;
// Display the value of the global value.
std::cout << ::amount;
std::cout << ' ';
// Display the value of the local variable.
std::cout << amount;
return 0;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -