gpt4 book ai didi

C:检查一组五张牌是否组成葫芦

转载 作者:行者123 更新时间:2023-11-30 20:10:15 25 4
gpt4 key购买 nike

这是我的代码:

#include <stdio.h>

int main(void) {
int i;
int num[13] = {0};
char poker[5];

// input a set of five cards
for (i = 0; i < 5; i++) {
scanf(" %c", &poker[i]);
}

for (i = 0; i < 5; i++) {
if (poker[i] == '10') num[9]++; // how do I modify this line?
if (poker[i] == 'J') num[10]++;
if (poker[i] == 'Q') num[11]++;
if (poker[i] == 'K') num[12]++;
if (poker[i] == 'A') num[0]++;
if (poker[i] >= '2' && poker[i] <= '9') {
num[poker[i] - '0' - 1]++;
}
}

int check = 1;

for (i = 0; i < 13; i++) {
// if num[i] != 2 or 3 then it's not full house
if (num[i] == 1 || num[i] > 3) {
check = 0;
}
}

if (check) {
printf("YES\n");
} else {
printf("NO\n");
}

return 0;
}

一切正常,除了包含“10”的输入数据。

标准输入示例

10 10 10 K A

预期标准输出

但是,我的程序会将其识别为满座。

我认为出错的原因是“10”实际上不是一个字符。

有没有办法修改我的代码并解决这个问题?

谢谢!

最佳答案

尝试使用不同的字符来表示 10,例如“T”

关于C:检查一组五张牌是否组成葫芦,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46866299/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com