有以下程序: #include int main( ) { int i,t[ ]...); return 0; } 运行结果是
25
举一反三
- 下面程序的运行结果是( )。 #include int main() { int i; for (i=0;i<10;i++); printf(“%d”,i); return 0; }
- #include <;stdio.h>;int main( ){ int i,t; t=1; i=2; while(i<;=5) { t=t*i; i=i+1; } printf("%d\n",t); return 0;} 程序的运行结果是: 。
- 以下程序的运行结果为( )。#include <;stdio.h>;int main( ){int i,t;t=1;i=2;while(i<;=5){t=t*i;i=i+1;}printf("%d\n",t);return 0;}
- 以下程序的运行结果是 。 #include int main() { struc...",p->b); return 0; }
- 下列程序的运行结果是 _____ 。 #include int main() {...][j]); } return 0; }
内容
- 0
读程序写运行结果题: 有以下程序 #include int fun(int n) { if(n) return fun(n-1)+n; else return 0; } main() { printf("%d\n",fun(3)); } 程序的运行结果是:
- 1
有下列程序,程序运行后的输出结果是0( )。 #include int main( ) { int a[5]={1,2,3}; printf("%d",a[3]); return 0; }
- 2
下列程序运行的结果是__________ 。 #include int main( ) { int i; for (i=1; i<=5; i++) { if (i%2) printf("*"); else printf("#"); } printf("$\n"); return 0; }
- 3
#include int f(int t[],int n); main() {int a[4]={1,2,3,4},s; s=f(a,4); printf(“%d”,s); } int f(int t[],int n) {if (n>0) return t[n-1]+f(t,n-1); else return 0;} 程序运行后的输出结果是
- 4
请写出以下程序的运行结果#include int main() { printf(Hello World! ); return 0; }