2758 打印ASCII码(c++) 摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){ char a; cin>>a; co…… 题解列表 2023年11月25日 0 点赞 0 评论 274 浏览 评分:9.9
题解 2760: 整型与布尔型的转换 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int a; cin>>a; cout<<(boo…… 题解列表 2023年11月25日 0 点赞 0 评论 214 浏览 评分:9.0
题解 2760: 整型与布尔型的转换 摘要:解题思路:最好先定义两个整形,到后面麻烦。注意事项:题目有些绕,要看懂。参考代码:#include <bits/stdc++.h>using namespace std;int main(){ …… 题解列表 2023年11月25日 0 点赞 0 评论 315 浏览 评分:9.9
题解 2752: 整型数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout<<sizeof(int)<<' &…… 题解列表 2023年11月25日 0 点赞 0 评论 295 浏览 评分:9.9
题解 2753: 浮点型数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<sizeof(float )<<" "<…… 题解列表 2023年11月25日 0 点赞 0 评论 161 浏览 评分:9.9
题解 2754: 其他基本数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ cout << sizeof(bool)<<" "<<size…… 题解列表 2023年11月25日 0 点赞 0 评论 234 浏览 评分:9.9
你怎么知道我单抽出金 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout<<sizeof(bool)<<" "<<s…… 题解列表 2023年11月25日 0 点赞 0 评论 228 浏览 评分:0.0
题解 2753: 浮点型数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout<<sizeof(float)<<'…… 题解列表 2023年11月25日 0 点赞 0 评论 166 浏览 评分:9.9
题解 2754: 其他基本数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout<<sizeof(bool)<<' …… 题解列表 2023年11月25日 0 点赞 0 评论 363 浏览 评分:9.9
题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<…… 题解列表 2023年11月25日 0 点赞 0 评论 153 浏览 评分:0.0