编写题解 2760: 整型与布尔型的转换 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdbool.h>int main(){ int a; scanf("%d",&a); bool …… 题解列表 2023年07月25日 0 点赞 0 评论 227 浏览 评分:0.0
2760: 整型与布尔型的转换 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年03月20日 0 点赞 0 评论 254 浏览 评分:0.0
2760: 整型与布尔型的转换 摘要:解题思路:强制转换就行了注意事项:bool类型在c语言里面没有,要用到头文件#include<stdbool.h>,不过强制转换可以不需要。参考代码:#include<stdio.h>#include…… 题解列表 2023年04月25日 0 点赞 0 评论 221 浏览 评分:0.0
2760: 整型与布尔型的转换(细节) 摘要:####这样写,在编译器上能过,但提交后会显示编译错误 ```c #include int main() { int a,b; bool c; scanf("%d",&a); …… 题解列表 2023年01月01日 1 点赞 0 评论 429 浏览 评分:0.0
不懂可评论 摘要:解题思路:注意事项:参考代码:num=int(input()) num=bool(num) num=int(num) print(num)…… 题解列表 2024年11月15日 0 点赞 0 评论 81 浏览 评分:0.0
ikun崩溃代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdbool.h>int main(){ int a; bool b; scanf("%d",&a); …… 题解列表 2023年01月31日 0 点赞 0 评论 166 浏览 评分:0.0