【单选题】中国古代某一地区爆发蝗灾,该地区民众可能会祭拜哪一“神仙”?()
【单选题】以下程序运行后的输出结果是 1. #include 2. int main() 3. { int a,b,c; 4. a=10; 5. b=20; 6. c=(a%b1); 7. printf("%d,%d,%d",a%b,a/b,c); 8. return 0; 9. } A. 10,0,1 B. 10,0,0 C. 10,1,0 D. 10,1,1
【单选题】以下程序的正确运行结果是 ( ) 。 #include func1( int a,int b) { int c; a+=a; b+=b; c=func2(a,b); return (c*c); } func2(int a,int b) { int c; c=a*b%3; return (c); } int main ( ) { int x=7,y=17; printf...
【简答题】void fun(int *a, int *b, int *c) { int *temp; temp=a; a=b; b=temp; *temp=*b, *b=*c; *c=*temp; } void main() { int a,b,c,*p1,*p2,*p3; a=5; b=7; c=3; p1=&a; p2=&b; p3=&c; fun(p1,p2,p3); printf("%d,%d,...
【单选题】以下程序的正确运行结果是 ( ) 。 #include func1( int a,int b) { int c; a+=a; b+=b; c=func2(a,b); return (c*c); } func2(int a,int b) { int c; c=a*b%3; return (c); } int main ( ) { int x=7,y=17; printf(...