QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 553|回复: 3

help!

[复制链接]
发表于 2003-6-12 22:47:16 | 显示全部楼层 |阅读模式
我gcc -o guess guess.c后出现这个错误提示是什么意思:
guess.c:41: stray '\32' in program
发表于 2003-6-13 08:42:42 | 显示全部楼层
wrong chacter in u code. check it, post u guess.c here
回复

使用道具 举报

发表于 2003-6-14 20:24:45 | 显示全部楼层
就是, 老兄, 不贴出源码,别人怎么看问题啊    :-)  :-)
回复

使用道具 举报

 楼主| 发表于 2003-6-28 22:10:28 | 显示全部楼层
#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);


}
这个是做的文曲星里面那个猜数字的游戏
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-11-15 13:30 , Processed in 0.037176 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

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