当前位置: 代码迷 >> C语言 >> some easy questions
  详细解决方案

some easy questions

热度:865   发布时间:2006-01-21 11:38:00.0
some easy questions

# include <stdio.h>
void main ()
{
int a,y;
a=10;y=0;
do {
a+=2;
y+=a;
if (y>50)break;
printf ("a=%d y=%d\n",a,y);
}while (a=14);
printf ("a=%d y=%d\n",a,y);
}

a=12 y=12
a=16 y=28
a=16 y=44
a=16 y=60
why the result is not 18,60

# include <stdio.h>
void main ()
{
int a,i;
for (a=1,i=-1;-1<=i<1;i++)
{
a++;printf ("%2d",a);
}
printf ("%2d",i);
}


#include<stdio.h>
void main()
{
int i=5;
do {
switch (i%2)
{
case 4:i--;break;
case 6:i--;continue;
}
i--;i--;
printf ("%d",i);
}while (i>0);
}

I don't understand at all,I hope you can explain it to me >_<

搜索更多相关的解决方案: easy  questions  

----------------解决方案--------------------------------------------------------

对第一题的理解:
do-while结构,是无论条件是否成立,都会先执行一次,因此得到第一个的a=12 y=12(,而while后面的条件是a=14,所以从第二次开始,都是以a=14开始计算,直到y>50。


----------------解决方案--------------------------------------------------------

-1<=i<1
好像没有这种写法吧。


----------------解决方案--------------------------------------------------------

ok


----------------解决方案--------------------------------------------------------
我晕呵呵那个while (a=14);的理解费了我老长时间啊呵呵
----------------解决方案--------------------------------------------------------
以下是引用ADALE在2006-1-21 11:38:00的发言:

# include <stdio.h>
void main ()
{
int a,y;
a=10;y=0;
do {
a+=2;
y+=a;
if (y>50)break; //多余的判断 10+2能大于50么?
printf ("a=%d y=%d\n",a,y);
}while (a=14); //12能等于14么? 就算等于也应该是==不是=,满足了条件后循环是空的,让人郁闷~
printf ("a=%d y=%d\n",a,y);
}

a=12 y=12
a=16 y=28
a=16 y=44
a=16 y=60
why the result is not 18,60

# include <stdio.h>
void main ()
{
int a,i;
for (a=1,i=-1;-1<=i<1;i++) //这里不对
{
a++;printf ("%2d",a);
}
printf ("%2d",i); //这里无法理解,因为for不对
}


#include<stdio.h>
void main()
{
int i=5;
do {
switch (i%2)
{
case 4:i--;break; 4/2的余数是5,口算都算得出来,2个case在这里没用处
case 6:i--;continue; //case只能用break退出循环
}
i--;i--; //2个i-- ?
printf ("%d",i);
}while (i>0); //whiel条件又是空循环
}

I don't understand at all,I hope you can explain it to me >_<

以上让人看了忍无可忍!

[此贴子已经被作者于2006-1-21 19:45:27编辑过]


----------------解决方案--------------------------------------------------------

我要声明一件事,这些程序是没有错的,他们是书上的题目

我就是不懂结果为什么是这样


对于love_me的解释本人觉得十分不解

6

----------------解决方案--------------------------------------------------------
书上的不一定没错,我的书上都有几个例题是错的,害人不浅啊~!
----------------解决方案--------------------------------------------------------
不是啦,我已在编译器上运行过了,答案一样,那你说是谁的错呢
----------------解决方案--------------------------------------------------------
我看不懂 真的.......晕了....难以理解
----------------解决方案--------------------------------------------------------