#include <math.h>
#include <stdio.h>

int main() {
    char ch1 = 'B', ch2 = 'A';
    int result;

    printf("Enter 2 characters without spaces: ");
    scanf("%c%c", &ch1, &ch2);

    result = ch1 % ch2;
}


我输入了AB,但似乎无法得到答案或结果。

最佳答案

看起来就像刚开始使用C一样,因此为了获得任何输出,必须使用'printf(“ ...”);进行打印。 '除非您这样做,否则不会自行显示。

插入此语句'printf(“%d”,result); '之后'结果= ch1%ch2;声明'。

09-26 06:52