Freedomkev | 1 points | May 17 2022 02:28:24
懂C的帮我看看(很简单但是网上查不到),为什么switch其他时候用的好好的,到这里却告诉我缺少expression?我明明有啊,就是int a🧐[-] Freedomkev | 1 points | May 17 2022 02:33:24
我做了个石头剪刀布的游戏,用户填123就可以对应使出石头剪刀或者布。为了告诉用户电脑选了什么和ta的选择,我用了一个函数来通过int a的值,也就是1或2或3,来把“石头”、“剪刀”,和“布”的英文赋值到一个string里。但是这里编码器告诉我expected expression,可是expression不就是int a吗?
[-] lpoijk5656 | 1 points | May 17 2022 02:40:50
function parameter才需要宣告data type, 使用variable時,例如運算或是條件判斷時,不需要額外加上data type,除非你要做casting.
[-] NectarineDifferent81 | 1 points | May 17 2022 02:34:25
去掉第二个int试试
[-] Freedomkev | 1 points | May 17 2022 02:37:23
谢,只不过C真学不明白,每次build都出不一样的问题
[-] Freedomkev | 1 points | May 17 2022 02:34:50
卷老嗨来
[-] lpoijk5656 | 1 points | May 17 2022 02:35:03
switch (a)就好...
[-] weriyir646 | 1 points | May 17 2022 02:35:35
什么学习tv
[-] gausslawalwaystrue | 1 points | May 17 2022 02:35:42
少了一个分号?
[-] bhexa | 1 points | May 17 2022 02:37:12
1.rps不能这样赋值,C语言里它是一个char array,首先要确保长度足够,其次应该用strcpy 2.每个switch结束的时候需要break 3.最后一个case没有分号
[-] Freedomkev | 1 points | May 17 2022 02:42:05
厉害!我刚想问呢,编码器告诉我char[10] is not assignable。那请问我应该把rps改成什么type呢?
[-] bhexa | 1 points | May 17 2022 02:48:22
char array是可以的,但是你需要在声明它的时候分配一个空间,要么在代码里hardcode,要么通过malloc或者calloc动态分配。简单来说hardcode像这样:char rps[100]
[-] Freedomkev | 1 points | May 17 2022 02:52:43
改成 rps[100]告诉我not assignable
我怀疑是rps = “rock” 这里错了。我在那一行给rps 后面加[100]也不行,告诉我incompatible pointer to integer conversion assigning to ‘char’ from char[5]’
[-] bhexa | 1 points | May 17 2022 02:55:21
有用strcpy来赋值吗
[-] Freedomkev | 1 points | May 17 2022 02:56:34
没,刚去查了查,好像赋值必须要用到另一个已有的variable?可是我就想把rps 赋值成 比如“rock”咋办
[-] bhexa | 1 points | May 17 2022 02:59:00
rps在函数外面你没有声明成一个全局变量吗?strcpy用法: https://stackoverflow.com/questions/26693537/in-c-why-cant-i-assign-a-string-to-a-char-array-after-its-declared
[-] Freedomkev | 1 points | May 17 2022 03:03:26
是全局变量,可是在switcheroo这个函数里,如何我把赋值的代码改成strcpy(rps, “rock”)
还会提示错误
[-] NectarineDifferent81 | 1 points | May 17 2022 03:11:11
“rock”这样的代码形式指的是一个字符串literal,而不是一个variable
[-] NectarineDifferent81 | 1 points | May 17 2022 03:14:51
如果我没记错…
[-] bhexa | 1 points | May 17 2022 03:12:56
什么错误,截图呗。还有注意输入法是不是用的英文,鉴于你现在用中文打字
[-] Freedomkev | 1 points | May 17 2022 03:17:09
这个是rps的赋值:char rps[100];
这个是switcheroo的case之后的代码: void switcheroo(int a){ switch (a){ case 1: strcpy(rps, "rock");
[-] Freedomkev | 1 points | May 17 2022 03:18:32
请问是不是少了点什么
[-] bhexa | 1 points | May 17 2022 03:21:27
编译器说了是什么错误吗?盲猜你没有include string头文件
[-] Freedomkev | 1 points | May 17 2022 03:23:42
牛,这都被你猜中了
[-] bhexa | 1 points | May 17 2022 03:29:59
👻
[-] Freedomkev | 1 points | May 17 2022 03:40:18
麻了,又遇到个问题
RPS.c:83:21: error: result of comparison against a string literal is unspecified (use an explicit string comparison function instead) [-Werror,-Wstring-compare]
if (*user_input == "a"){
[-] bhexa | 1 points | May 17 2022 03:48:13
== 'a', C跟Python不一样,字符串和单个字符不能弄混了
[-] Freedomkev | 1 points | May 17 2022 03:41:18
我代码长这样: printf("\n\n\nDo you wish to go to the game's start page or exit? Input a to return to the start page and input anything else to simply exit the program.\n");
scanf(" %c", &user_input[0]);
if (*user_input == "a"){
printf("No problem, redirecting you to the main page...\n\n\n");
goto start_page;
}
else{
exit(0);
[-] NectarineDifferent81 | 1 points | May 17 2022 03:05:30
按照你的逻辑,可以声明一个const char指针,然后在case语句里对这个指针进行assignment,最后返回这个指针就好了
[-] Freedomkev | 1 points | May 17 2022 03:07:51
唉,还没学到这个
[-] Ondisk2021 | 1 points | May 17 2022 03:21:28
如果你的string不需要修改的话可以这样写
char constconst s_rock = "rock";
char constconst s_paper = "paper";
char constconst s_scissors = "scissors";
char constrps;
//...
rps = s_rock;
rps = s_paper;
[-] cheshire_cat_2022 | 1 points | May 17 2022 02:44:54
哈佛cs小留是吧,简单收个网
[-] Content_Ad9934 | 1 points | May 17 2022 02:45:48
复制代码,转换成markdown mode
C++
代码插入此处
[-] Freedomkev | 1 points | May 17 2022 02:54:55
我看看markdown mode 什么意思...
[-] Freedomkev | 1 points | May 17 2022 02:58:33
char name[100]; char user_input[100]; char rps[100]; int rn, tr, su, sc, ua, ca; /*rn = round number (always begins as 1); tr = total round number su = score of user; sc = score of computer ua = user action; ca = computer action rps = used to represent either one of the three choices of the game
Because user_input[100] is a "string," it cannot be used to store- -what user intends to play since rock, paper, or scissors are 1, 2, or 3. I chose integers to represent user's action so that "switch" method can be utilized.*/
void get_name();
void get_name() { printf("Input your preferred username here: "); scanf(" %99s", name); }
void game_page();
void game_page() { printf("\nHello %s, \nStart a new game (a) \nChange your username (b) \nExit the game (c)\nRules (d)\n", name); printf("Enter your instruction: "); scanf(" %c", &user_input[0]); if (user_input == 'b'){ get_name(); } else if (user_input == 'c'){ printf("Exiting the program..."); exit(0); } else if (user_input == 'd'){ printf("Rock &rt; Scissors; Scissors &rt; Paper; Paper &rt; Rock\n" "Choose either Rock, paper or scissors to play against the machine.\n" "\nThe machine plays randomly.\n" "Round number plus one and then divided by two is the minimum of\n" "'Rock, paper, scissors' you need to perform to win the game."); } else if (user_input == 'a'){ printf("Round Number? (3, 5, 7)"); scanf(" %d", &tr); } }
void switcheroo(int a); //switcherro is a function that "switches" the cases for the object determined by its parameter, int a///
void switcheroo(int a){ switch (a){ case 1: rps[5] = "rock"; case 2: rps[6] = "paper"; case 3: rps[9] = "scissors"; } }
void game_result();
void game_result(){ printf("\n\n\n\nThe winner is - drum roll please... (press ENTER)"); getchar(); if (su == sc){ printf("\tno one! \nThe game ended in a draw.\n\nFINAL SCORES: %d : %d", su, sc); } else if (su &rt; sc){ printf("\t%s! \nHooray! The victory is yours!\n\nFINAL SCORES: %d : %d", name, su, sc); } else{ printf("\t the computer! \nBetter luck next time!\n\nFINAL SCORES: %d : %d", su, sc); } printf("\n\n\nDo you wish to go to the game's start page or exit? Input a to return to the start page and input anything else to simply exit the program.\n"); scanf(" %c", &user_input[0]); if (*user_input == "a"){ printf("No problem, redirecting you to the main page...\n\n\n"); goto start_page; } else{ exit(0); } }
void game();
void game() { char urps[10]; char crps[10] //urps = user action in string form; crps = computer action in string form// printf("\nLoading... press ENTER to start the game"); getchar(); su = 0; sc = 0; for ( rn = 1; rn <= tr; rn++){ printf("\n\n%s V.S. Computer\n" "Round %d\n" "Total Round: %d\n" "Scoreboard: %d : %d\n", name, rn, tr, su, sc); printf("\nChoose what you will play next: Rock = 1; Paper = 2; Scissors = 3"); scanf("%d", &ua); ca = (rand() % 3)+1;
switcheroo(ua);
urps = rps;
switcheroo(ca);
crps = rps;
printf("The result is... (press ENTER)");
getchar();
if (ua == ca){
printf("\n\n\nUser ( %c) vs. Computer ( %c) results in a DRAW", &urps, &crps);
}
else:
switch (ua){
case 1:
if (ca == 2){
printf("\n\n\nUser ( %c) vs. Computer ( %c) -- The computer wins!", &urps, &crps);
sc += 1;
}
else{
printf("\n\n\nUser ( %c) vs. Computer ( %c) -- You win!", &urps, &crps);
su += 1;
}
case 2:
if (ca == 3){
printf("\n\n\nUser ( %c) vs. Computer ( %c) -- The computer wins!", &urps, &crps);
sc += 1;
}
else{
printf("\n\n\nUser ( %c) vs. Computer ( %c) -- You win!", &urps, &crps);
su += 1;
}
case 3:
if (ca == 1){
printf("\n\n\nUser ( %c) vs. Computer ( %c) -- The computer wins!", &urps, &crps);
sc += 1;
}
else{
printf("\n\n\nUser ( %c) vs. Computer ( %c) -- You win!", &urps, &crps);
su += 1;
}
//The if statement below acts as a checkpoint to make sure the game ends immediately after the result is fixed.// if ((sc == (tr + 1)/2)||(su == (tr + 1)/2)){ game_result(); } printf("\n\nNext Term..."); printf("\nTo proceed, press ENTER"); getchar(); game_result();
}
}
}
int main() {
srand(time(NULL));
printf("\nROCK, PAPER, SCISSORS\n");
printf("press ENTER to launch the game");
getchar();
get_name();
start_page:
game_page();
game();
return 0;
}
[-] Some-Commercial-4387 | 1 points | May 17 2022 06:51:23
迪友们是真的热心善良
[-] Freedomkev | 1 points | May 17 2022 02:59:13
是reddit markdown mode吗?希望我没弄错。
[-] OddNewspaper7306 | 1 points | May 17 2022 02:46:20
去钓鱼吧问问
[-] Efficient_Address634 | 1 points | May 17 2022 03:07:09
Switch (不用int) Case結束要加break
[-] bhexa | 1 points | May 17 2022 03:07:54
什么错误?输入法引号逗号不要是中文的字符
[-] dhhhja | 1 points | May 17 2022 03:26:37
最后一个case少个分号
[-] dhhhja | 1 points | May 17 2022 03:28:14
另外每个case后要加break,不然匹配到case后会fall through
[-] Potman1024 | 1 points | May 17 2022 04:00:35
CSTV是吧,人均码老嗨
[-] noisyupstairs8964 | 1 points | May 17 2022 04:55:31
转码tv
[-] WTF_Lilbri185 | 1 points | May 17 2022 05:15:24
晶哥这么好学啊
[-] EbregiselGamwich | 1 points | May 17 2022 02:32:28
我不用 c,但是我猜你应该 switch(a)
[-] Freedomkev | 1 points | May 17 2022 02:35:35
但是不应该表明a是integer吗
[-] EbregiselGamwich | 1 points | May 17 2022 02:38:20
参数那儿不是已经写了 int了吗
[-] Freedomkev | 1 points | May 17 2022 02:40:04
谢谢,能再问一个吗,什么样的variable能赋值成“rock”
[-] EbregiselGamwich | 1 points | May 17 2022 02:47:15
我不用 c,你看c有没有string,如果没有的话可能得用 char[ ] ,byte[ ] 之类的吧。另外,你这个用 enum不是更合适吗?
[-] Freedomkev | 1 points | May 17 2022 02:36:36
当我没说,我把函数的格式记到switch里了