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