K12教育赛事综合服务平台
聚乐之家官方网站
下载聚乐之家官方App
专注青少年竞赛题库网站
#include <iostream> using namespace std; int g_a = 100; void test() { int g_a = 200; { int g_a = 300; cout << g_a << endl; } cout << g_a << endl; } int main() { test(); cout << g_a << endl; return 0; }
300 200 100
300 100 200
100 200 300
200 300 100