题解 2760: 整型与布尔型的转换

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdbool.h>int main(){ int a; bool b; scanf("%d",&a);       ……

不懂可评论

摘要:解题思路:注意事项:参考代码:num=int(input()) num=bool(num) num=int(num) print(num)……

2760: 整型与布尔型的转换

摘要:解题思路:强制转换就行了注意事项:bool类型在c语言里面没有,要用到头文件#include<stdbool.h>,不过强制转换可以不需要。参考代码:#include<stdio.h>#include……

2760: 整型与布尔型的转换

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {……

题解 2760: 整型与布尔型的转换

摘要:解题思路:最好先定义两个整形,到后面麻烦。注意事项:题目有些绕,要看懂。参考代码:#include <bits/stdc++.h>using namespace std;int main(){    ……