题解 2768: 与圆相关的计算 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ double r; scanf("%lf",&r); pr…… 题解列表 2023年11月25日 0 点赞 0 评论 489 浏览 评分:0.0
题解 1267: A+B Problem 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b; cin>>a>>b; cout<<…… 题解列表 2023年11月25日 0 点赞 0 评论 336 浏览 评分:0.0
王牌花色详细解法,新手小白也能懂 摘要:# 王牌花色 **思路很重要,细心也很重要** ## 这里要多次多组输入,这就增加了难度,同时它也降低了难度,因为我们只需手动输入一个王牌花色字符,再用玩家的牌的花色与输入的王牌花色字符匹…… 题解列表 2023年11月25日 0 点赞 0 评论 484 浏览 评分:0.0
题解 2754: 其他基本数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout<<sizeof(bool)<<' …… 题解列表 2023年11月25日 0 点赞 0 评论 563 浏览 评分:9.9
题解 2753: 浮点型数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout<<sizeof(float)<<'…… 题解列表 2023年11月25日 0 点赞 0 评论 379 浏览 评分:9.9
你怎么知道我单抽出金 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout<<sizeof(bool)<<" "<<s…… 题解列表 2023年11月25日 0 点赞 0 评论 435 浏览 评分:0.0
题解 2754: 其他基本数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ cout << sizeof(bool)<<" "<<size…… 题解列表 2023年11月25日 0 点赞 0 评论 504 浏览 评分:9.9
题解 2753: 浮点型数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ cout<<sizeof(float )<<" "<…… 题解列表 2023年11月25日 0 点赞 0 评论 378 浏览 评分:9.9
题解 2752: 整型数据类型存储空间大小 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ cout<<sizeof(int)<<' &…… 题解列表 2023年11月25日 0 点赞 0 评论 542 浏览 评分:9.9
详细代码,数学问题不大,就是理解问题 摘要:解题思路:这个首先真的细心读题目,题目说每行测试后悔空一行,这说明什么 ——听我到来;这是一个求字符众数的题,首先得遍历每个字符串吧,遍历字符串就得用循环吧遍历字符串得数一下字符串中每个字符出现多少次…… 题解列表 2023年11月25日 1 点赞 0 评论 456 浏览 评分:0.0