编写题解 2760: 整型与布尔型的转换
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdbool.h>int main(){ int a; scanf("%d",&a); bool ……
2760: 整型与布尔型的转换(细节)
摘要:####这样写,在编译器上能过,但提交后会显示编译错误
```c
#include
int main()
{
int a,b;
bool c;
scanf("%d",&a);
……
2760: 整型与布尔型的转换
摘要:解题思路:强制转换就行了注意事项:bool类型在c语言里面没有,要用到头文件#include<stdbool.h>,不过强制转换可以不需要。参考代码:#include<stdio.h>#include……