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