题目内容

读下列程序,写出程序的运行结果。#includeint main(){int a,b;for(a=1,b=1;a<=100;a++){if(b>=20)break;if(b%3==1){b+=3;continue;}b-=5;}printf("%d\n",a);return 0;}输出:

查看答案
更多问题

读下列程序,写出程序的运行结果。#includeint main(){int n=0,fact=1,sum=0;do{n++;fact=fact*n;sum+=fact;} while (n<4);printf("%d\n",sum);return 0;}输出:

读下列程序,写出程序的运行结果。#includeint main(){int x=2, y=3, m, n;m = x++*5;n = ++y*5;printf ("%d,%d,%d,%d\n", x, y, m, n);return 0;}输出:

读下列程序,写出程序的运行结果。#includeint main(){int j , k , p, s;s=0;for (j=1; j<=3; j++){p=1;for(k=1; k<=j; k++)p=p*k;s=s+p;}printf("s=%d\n",s);return 0;}输出:

1999年,普京首次出任俄罗斯总统,标志着俄罗斯进入了一个新的历史时期。2012年3月 普京再次当选俄联邦总统,任期( ) 年,可连任一次。

A. 4年
B. 6年
C. 8年
D. 5年

答案查题题库