读程题C语言

四、读程题,请写出以下程序的运行结果1.#include<stdio.h>main(){intx;for(x=1;x<10;x++)if(x%2==0)printf(“%... 四、 读程题,请写出以下程序的运行结果
1. #include <stdio.h>
main( )
{
int x;
for(x=1;x<10;x++)
if(x%2==0)
printf(“%d\n”, x);
}

2. #include <stdio.h>
main()
{
int x=1,y=1,z=1;
y=y+z;
x=x+y;
printf(“%d\n”, x<y?x:y);
printf(“%d\n”, x<y?x++:y++);
printf(“%d,%d\n”,x,y);
}
3. #include <stdio.h>
main()
{
int x,y,z,u;
x=6;y=5,z=7;u=x;
if(x<y) u=y; printf(“u=%d\n”,u);
if(u<z) u=z; printf(“u=%d\n”,u);
}
4. #include <stdio.h>
main( )
{
int a;
a=10;
while(a<=20){
if(a%3= =0)
printf(“%4d”, a);
a++;
}
}

5. #include <stdio.h>
main()
{
int row=6, column;
while(row>1){
column=1;
while(column<=6){
printf(“%c”, row%2?’<’:’>’);
column=column+1;
}
row=row-1;
printf(“\n”);
}
}

6. #include <stdio.h>
main( )
{
int x;
for(x=1;x<10;x++)
if(x%3==0)
printf(“%d\n”,++x);
}

7. #include <stdio.h>
void f1(void);
void f2(void);
int x=5;
main()
{
int x=5;
printf (“x=%d\n”, x);
x++;
f1();
f2();
f1();
printf (“x=%d\n”, x);
}
void f1(void)
{ static int x=5;
printf (“x=%d\n”, x);
x++;
printf (“x=%d\n”, x);
}
void f2(void)
{ printf (“x=%d\n”, x);
x--;
printf(“x=%d\n”, x);
}

8. 当从键盘输入:4321<回车>,下面程序运行结果是___________________________
#include <stdio.h>
main(){
int x, t;
scanf(“%d”, &x);
for(t=0; x!=0; x=x/10)
t=t+(x%10)*(x%10);
printf(“the value is: %d”,t);
}
展开
 我来答
yogkin
2010-05-11 · 超过10用户采纳过TA的回答
知道答主
回答量:64
采纳率:0%
帮助的人:32.9万
展开全部
第一题:2468
第二题:2
2
3,3
第三题:u=6
u=7
第四题: 12
15
18
第五题:。。。。。。。。
第六题:4
7
10
第七题:x=5
x=5
x=6
x=5
x=4
x=6
x=7
x=6
第八题:30
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式