驾驶小型载客汽车在高速公路行驶的最低车速为90公里/小时。
参考答案:错
有关南极洲的叙述,正确的是:[ ]
A.是各大洲中跨纬度最广的大洲
B.是各大洲中跨经度最广的大洲
C.周围直接濒临三大洋
D.全部位于南半球,东半球上
以下是某C程序段,其功能为计算输入数字的阶乘。请仔细阅读程序并完成要求。 #include<stdio. h> #include<stdlib. h> int main() { int i=0;/*i为计数器*/ int n; int factorial=1;/*保存阶乘的结果*/ puts("*************************************"): puts("*The program will compute *"); puts("*the factotial of an integer *"); puts("*************************************"): puts("please input the number n:"); scanf("%d",&n); if(n<0)/*判断输入的数是否大于或等于0*/ { printf("please input an interger>=0. \n"); return 0; } if(n==0)/*0的阶乘是1*/ { printf("factorial of 0 is 1.\n"); return 0; } i=1; while(i<=n) { factorial = factorial * i; i++: } printf("factorial of % d is:%d. \n",n,factorial); getch(); return 0: }