题解列表
2771: 大象喝水(制作不易,给个好评吧)
摘要:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int h,r; double t; cin>>h>>r; ……
daxiangheshui0263461984565484752625+8749
摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){ int h,r; cin>>h>>r; double v; ……
不能完全通过,最好情况通过67.仅供学习参考
摘要:
# 题目 3166: 蓝桥杯2023年第十四届省赛真题-阶乘的和--不能完……
题解 2780: 奇偶数判断
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d",&a); if(a%2==0) { printf("even\n"); }……