鱼C论坛

 找回密码
 立即注册
查看: 2247|回复: 3

新手学c 遇到问题 麻烦大虾看一下求解

[复制链接]
发表于 2014-8-3 15:56:38 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
#include <stdio.h>
#include<ctype.h>
int main(void)
{
        char another_game == 'Y';
        const unsigned int DELAY=1;
        printf("\nTo play Simple Simon,");
        printf("watch the screen for a sequence of digits.");
        printf("\nWatch carefully,as the digits are only displayed for %u second%s",DELAY,DELAY>1?"s!":"!");
        printf("\nThe computer will remove them,and then prompt you");
        printf("to enter the same sequence.");
        printf("\nWhen you do,you must put spaces between the digits.\n");
        printf("\nGood luck!\nPress Enter to play\n");
        scanf("%c",&another_game);
        do
        {
                printf("\nDo you want to play again (y\n)?");
                scanf("%c",&another_game);
        }
        while (toupper(another_game)=='Y');
        return 0;
}



D:\vc\MSDev98\MyProjects\simon\simonyx.c(5) : error C2143: syntax error : missing ';' before '=='
D:\vc\MSDev98\MyProjects\simon\simonyx.c(6) : error C2143: syntax error : missing ';' before 'const'
D:\vc\MSDev98\MyProjects\simon\simonyx.c(9) : error C2065: 'DELAY' : undeclared identifier
Error executing cl.exe.
没有丢‘;’,为什么报错啊???

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2014-8-3 16:41:31 | 显示全部楼层
确实是值得思考的一个问题!{:1_1:}
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2014-8-3 17:26:13 | 显示全部楼层
:sweat:这个问题很基础的。。。
char another_game == 'Y';
这句话你是要赋值吗?赋值符号是==号吗?是=吧
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2014-8-3 17:46:57 | 显示全部楼层
andalousie 发表于 2014-8-3 17:26
这个问题很基础的。。。

这句话你是要赋值吗?赋值符号是==号吗?是=吧

太谢谢啦,还真是,一直以为是缺‘;’这个呢,没注意那.......
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 18:35

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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