C与C++中尺度输入实现方法上的区别
当前位置:以往代写 > C/C++ 教程 >C与C++中尺度输入实现方法上的区别
2019-06-13

C与C++中尺度输入实现方法上的区别

C与C++中尺度输入实现方法上的区别

刚开始学C语言时碰着一个问题,如下代码:

#include
int main()
...{
char a,b;
printf("Please input the first character:");
scanf("%c", &a);
printf("Please input the second character:");
scanf("%c", &b);
printf("The two characters are %c, %c", a, b);
return 0;
}

措施运行功效如下:

C与C++中标准输入实现要领上的区别

而下面这段措施却可以正常运行:

#include
int main()
...{
char a;
int b;
printf("Please input the first character:");
scanf("%c", &a);
printf("Please input the second integer:");
scanf("%d", &b);
printf("The two characters are %c, %d", a, b);
return 0;
}

运行功效如下:

    关键字:

在线提交作业