QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 530|回复: 3

help!

[复制链接]
发表于 2003-6-12 22:47:31 | 显示全部楼层 |阅读模式
我gcc -o guess guess.c后出现这个错误提示是什么意思:
guess.c:41: stray '\32' in program
 楼主| 发表于 2003-6-28 22:20:39 | 显示全部楼层
源代码如下:
#include "stdio.h"

#include "math.h"

main()

{

int i,k,count,same,similar,m1,m2,m3,m4,n1,n2,n3,n4,result,a[4],b[4];

m1=rand();

m2=rand();

m3=rand();

m4=rand();

n1=m1%10;

n2=m2%10;

while(n2==n1) {m2=rand();n2=m2%10;}

n3=m3%10;

while(n3==n2||n3==n1) {m3=rand();n3=m3%10;}

n4=m4%10;

while(n4==n3||n4==n2||n4==n1) {m4=rand();n4=m4%10;}

result=n1*1000+n2*100+n3*10+n4;

count=2;

while(count!=0)

{

for(i=0;i<4;i++)

scanf("%d",&a);

b[0]=n1;b[1]=n2;b[2]=n3;b[3]=n4;

same=0;similar=0;

for(i=0;i<4;i++)

{

if(a==b) same=same+1;

for(k=0;k<4&&k!=i;k++)

{

if(a==b[k]) similar=similar+1;

}

}

if(same!=4) {printf("%dA,%dB",same,similar);count=count-1;}

else    { printf("well done!");count=0; }

}

printf("the result is %d",result);


}
回复

使用道具 举报

 楼主| 发表于 2003-6-28 22:21:02 | 显示全部楼层
源代码如下:
#include "stdio.h"

#include "math.h"

main()

{

int i,k,count,same,similar,m1,m2,m3,m4,n1,n2,n3,n4,result,a[4],b[4];

m1=rand();

m2=rand();

m3=rand();

m4=rand();

n1=m1%10;

n2=m2%10;

while(n2==n1) {m2=rand();n2=m2%10;}

n3=m3%10;

while(n3==n2||n3==n1) {m3=rand();n3=m3%10;}

n4=m4%10;

while(n4==n3||n4==n2||n4==n1) {m4=rand();n4=m4%10;}

result=n1*1000+n2*100+n3*10+n4;

count=2;

while(count!=0)

{

for(i=0;i<4;i++)

scanf("%d",&a);

b[0]=n1;b[1]=n2;b[2]=n3;b[3]=n4;

same=0;similar=0;

for(i=0;i<4;i++)

{

if(a==b) same=same+1;

for(k=0;k<4&&k!=i;k++)

{

if(a==b[k]) similar=similar+1;

}

}

if(same!=4) {printf("%dA,%dB",same,similar);count=count-1;}

else    { printf("well done!");count=0; }

}

printf("the result is %d",result);


}
回复

使用道具 举报

发表于 2003-6-30 17:09:46 | 显示全部楼层
代码文件的问题 到linux下编辑一下
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-15 13:53 , Processed in 0.080058 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表