level 1
(37) 有如下程序
#define N 2 #
define M N+1
#define NUM 2*M+1 #
main() { int i; for(i=1;i<=NUM;i++)printf(“%d\n”,i); } 该程序中的for循环执行的次数是( )。 A) 5 B) 6 C) 7 D) 8
2008年03月09日 14点03分
1
level 9
#define N 2 让N=2#
define M N+1 让M=N+1
#define NUM 2*M+1 NUM=2*M+1#
main() { int i; for(i=1;i<=NUM;i++)printf(“%d\n”,i); 让i=1,i<=7就自加貌似是这样,学的时候就不懂,也许是这样
2008年03月09日 14点03分
8
level 0
到底是...........我啥也不说了我........
2008年03月09日 15点03分
17
level 1
标准的vb.用vb运行一下就知道了。我还是初二学的呢。现在高三没心情算了
2008年03月09日 15点03分
19