题解 2772: 苹果和虫子 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){float n, x, y, s;cin …… 题解列表 2023年12月23日 0 点赞 0 评论 205 浏览 评分:9.9
题解 2760: 整型与布尔型的转换 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; bool b; cin>>a; b=a;…… 题解列表 2023年12月23日 0 点赞 0 评论 270 浏览 评分:9.9
题解 2757: 浮点数向零舍 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>using namespace std;int main(){ double n; cin>…… 题解列表 2023年12月23日 0 点赞 0 评论 304 浏览 评分:9.9
题解 2759: 打印字符 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; cin>>a; putchar(a);…… 题解列表 2023年12月23日 0 点赞 0 评论 234 浏览 评分:9.9
题解 2758: 打印ASCII码 摘要:解题思路:注意事项:参考代码:2758: 打印ASCII码知识点知识点1:强制类型转换我们都知道,数据类型有整型int、浮点型float、字符char等等。我们可以通过在变量前面加括号,对已有的类型进…… 题解列表 2023年12月23日 0 点赞 0 评论 219 浏览 评分:9.9
题解 2754: 其他基本数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ bool a; char b; cout<<sizeof(…… 题解列表 2023年12月23日 0 点赞 0 评论 220 浏览 评分:9.9
题解 2752: 整型数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a; short b; cout<<size…… 题解列表 2023年12月23日 0 点赞 0 评论 382 浏览 评分:9.9
题解 2769: 计算并联电阻的阻值 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ double r1,r2; …… 题解列表 2023年12月23日 0 点赞 0 评论 163 浏览 评分:9.9
题解 2768: 与圆相关的计算 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double r; scanf("%lf",&r); pr…… 题解列表 2023年12月23日 0 点赞 0 评论 451 浏览 评分:9.9
题解 1006: [编程入门]三个数找最大值 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c…… 题解列表 2023年12月23日 0 点赞 0 评论 331 浏览 评分:9.9