首页 > 解决方案 > 如何与 If 两个字符串的值进行比较?

问题描述

我想比较两个字符串并显示每个玩家的获胜次数。我不太明白 string.h 库是如何工作的,但在搜索中我已经证明它应该适用于这个比较

#include <stdio.h>
#include <string.h>

int main()
{
    printf("Player 1: ");
    scanf("%s", &play1);
    printf("Player 2: ");
    scanf("%s", &play2);            
    printf("Total matches: ");
    scanf("%d", &t_matches);

    for (i = 1; i <= t_matches; i++) {
        printf("Winner match %d: ", i);
        scanf("%s", &win1);
        if (strcmp(win1, play1)) {
            p1++; 
        } else if(strcmp (win1, play2)) {
            p2++; 
        }
    }
    printf("%s win %d matches\n", play1, p1);
    printf("%s win %d matches\n", play2, p2);
}

标签: c

解决方案


strcmp如果字符串相等,该函数返回 0。您正在检查它们是否不相等。你反而想要:

if (strcmp(win1, play1) == 0) {
    p1++; 
} else if(strcmp (win1, play2) == 0) {
    p2++;
}

推荐阅读