求用户输入的两个数的商,程序运行时,以如下格式输入数据: Input two integers:4 2↙ 请改正程序中的错误,使它能得出正确的结果。 #include <stdio.h> main() { int a, b, c; printf("Input two integers:"); scanf("%d %d", &a, &b); c = a\b; printf("The quotient of a and b is :%d", c); }
时间: 2023-12-10 20:41:17 浏览: 57
用C++完成求取两个数的商
程序中的错误在于 c = a\b; 这一行代码,应该改为 c = a/b; 以进行除法运算。修改后的程序如下:
```c
#include <stdio.h>
int main() {
int a, b, c;
printf("Input two integers:");
scanf("%d %d", &a, &b);
c = a / b;
printf("The quotient of a and b is :%d", c);
return 0;
}
```
当用户输入 4 和 2 时,程序将输出:The quotient of a and b is :2
阅读全文