填空题

以下程序的执行结果是______。 #include<iostream.h> #include<iomanip.h> void print(int n) { if(n!=0) { print(n-1); for(int i=1; i<=n;i++= cout<<setw(3)<<i; cout<<endl; } } void main() { print (4); }

【参考答案】

A
热门 试题