填空题
阅读下面程序: #include<iostream.h> void f(int n) { int x(5); static int y(10); if(n>0) { ++x; ++y; cout<<x<<","<<y<<endl; } } void main() { int m(1); f(m), } 则该程序的输出结果是{{U}} 【14】 {{/U}}。
1、
【正确答案】
1、6,11
【答案解析】
提交答案
关闭