C++ 题目 #include <iostream> using namespace std; int i=15; int main() { int i; i=100; ::i=i+1; cout<<::i<<endl; return 0; } 运行结果 101