超高分悬赏高手解答有关计算机编程流程图!!!!急!!!最好能发ppt文件过来 感激不尽 3到九题

如题所述

第1个回答  2013-11-24
(1) 23
#include "stdio.h"
void main()
{
int x;
x=0;
while(++x)
{
if(x%3==2)
if (x%5==3)
if(x%7==2)
{
printf("x = %d\n",x);
break;
}
}
}
(2#include "stdio.h"
void main()
{
int x;
x=14700;
while(x<14800)
{
if(x%57==0||x%67==0)
{
printf("x= %d \n",x);

}
x=x+10;
}
}
(3#include "stdio.h"
void main()
{
int n,i,j;
n=600;
for(i=1;i<n/12;i++){
j=n-12*i;
j=j/15;
if (j>=1)
{
printf("大盒子 :%d 小盒子 : %d\n",i,j);
}
}
}追问

这是第几题?

追答

不知道!网上抄的!

追问

- -怎么抄的

第2个回答  2013-11-24
想做了,进来一看这么多,头都大了,然后还是歪着的图像,还全是英文。。。。追问

能做多少算多少吧,另外拍了照片。对高手很简单的。好了还会加分

第3个回答  2013-12-04
只是flowchart和pseudocode 自己随便画画呗,又不要求代码,要不了多久的。最近要期末,估计没人会闲的帮你做作业。
第4个回答  2013-11-24
(1) 23
#include "stdio.h"
void main()
{
int x;
x=0;
while(++x)
{
if(x%3==2)
if (x%5==3)
if(x%7==2)
{
printf("x = %d\n",x);
break;
第5个回答  2013-11-23
能不能把图片给发正了,看着真别扭!追问

正了反光更厉害

相似回答