C语言作业,求帮助

2025-03-01 18:16:59
推荐回答(1个)
回答1:

C语言代码和运行结果如下:

输出符合要求,望采纳~

附源码:

#include

int main() {

    int a, b;

    scanf("%d %d", &a, &b);

    printf("%d, %d\n", a, b);

    return 0;

}