在处理器上的Cache是什么Cache()。
A.L1 Cache
B.动态 Cache
C.处理增加 Cache
D.RAM Cache
E.系统 Cache
参考答案:A
项目法人以国有独资公司形式存在则要设立( )。
A.监事会B.董事会C.股东会D.国有资产管理办公室
以下程序的功能是:将输入的正整数按逆序输出。例如:若输入135,则输出531,请填空。 #include<stdio.h> main() int n,s; printf("Enter a number:");scanf("%d",&n); printf("Output:"); do s=n%10;printf("%d",s);______; while(n!=0); printf("\n");