当前位置: > 三、 阅读下列程序,写出执行结果...
题目
三、 阅读下列程序,写出执行结果
1.
#include < stdio.h>
void main( )
{ int a = 5,b = 10 ,c=3 ,d=0 ;
b++;
c+=6;
d = a < b a :b;
printf ( "a=%d " ,a );
printf ( "b=%d " ,b );
printf ( "c=%d " ,c );
printf ( "d=%d " ,d );
}
2.
#include
void main( )
{ int a[8]={36,25,20,43,12,70,66,35};
int s0 ,s1 ,s2 ,i;
s0=s1=s2=0;
for( i=0 ; i < 8 ; i++){
switch (a[i]%3)
{ case 0:s0+=a[i] ; break;
case 1:s1+=a[i] ; break;
case 2:s2+=a[i] ; break;
}
}
printf ( "s0=%d ",s0 );
printf ( "s1=%d ",s1 );
printf ( "s2=%d ",s2 );
}
3.
#include
void fun(int ,int ,int );
void main( )
{ int x=2 ,y=3 ,z=0;
printf ( "x=%d,y=%d,z=%d " ,x ,y ,z);
fun(x ,y ,z);
printf ( "x=%d,y=%d,z=%d " ,x ,y ,z);
}
void fun ( int a ,int b ,int c)
{ c=a+b ; a=a*a ; b=b*b;
printf ( "a=%d,b=%d,c=%d " ,a ,b ,c); }

提问时间:2021-03-15

答案
1. a=5
b=11
c=9
d=5
2. s0=114
s1=138
s2=55
3. x=2,y=3,z=0
a=4,b=9,c=5
x=2,y=3,z=0
举一反三
已知函数f(x)=x,g(x)=alnx,a∈R.若曲线y=f(x)与曲线y=g(x)相交,且在交点处有相同的切线,求a的值和该切线方程.
我想写一篇关于奥巴马的演讲的文章,写哪一篇好呢?为什么好
奥巴马演讲不用看稿子.为什么中国领导演讲要看?
想找英语初三上学期的首字母填空练习……
英语翻译
版权所有 CopyRight © 2012-2019 超级试练试题库 All Rights Reserved.