1669: 求圆的面积 摘要:```cpp #include #include #define pi 3.1415926 using namespace std; int main() { float r;…… 题解列表 2023年01月29日 0 点赞 0 评论 514 浏览 评分:9.9
2953: 特殊日历计算 摘要:```cpp #include #include using namespace std; int a[100],yue[13]={0,31,28,31,30,31,30,31,31,30,3…… 题解列表 2023年01月29日 0 点赞 0 评论 249 浏览 评分:9.9
2972: 除以13(c++代码) 摘要:```cpp #include #include using namespace std; const int N=1e5+10; void fwrite(int n) { if(n>…… 题解列表 2023年01月29日 0 点赞 0 评论 367 浏览 评分:9.9
2963: Tomorrow never knows? 摘要:输入的时候‘-’可以用getchar直接屏蔽掉 ```cpp #include #include using namespace std; bool IsLeapYear(int year)…… 题解列表 2023年01月29日 0 点赞 0 评论 275 浏览 评分:7.3
2969: 打印月历 摘要:```cpp #include using namespace std; int fun(int a,int b,int q); int main() { int i,j,m,n,…… 题解列表 2023年01月29日 0 点赞 0 评论 625 浏览 评分:9.9
2797: 最高的分数 摘要:```cpp #include using namespace std; int main() { int a,n,max; cin>>n; max=0; …… 题解列表 2023年01月29日 0 点赞 0 评论 643 浏览 评分:9.9
表达式括号匹配(stack) 栈的基本应用 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;stack<char>ver;//存放'(' 如果遇到 ')…… 题解列表 2023年01月29日 0 点赞 0 评论 375 浏览 评分:0.0
2177 信息学奥赛一本通T1252-走迷宫(c++bfs版) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstring> #include<cmath> #include<algorithm> #include…… 题解列表 2023年01月27日 0 点赞 0 评论 690 浏览 评分:9.9
1043: [编程入门]三个数字的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); printf("%d %d…… 题解列表 2023年01月27日 0 点赞 1 评论 599 浏览 评分:9.9
C++的通俗易懂方法 摘要:解题思路:拆解题目的过程,一次接一次地分析反弹的过程,从而能分析出反弹过程的共性和不同点注意事项:参考代码:#include <iostream>#include<cmath>#include<iom…… 题解列表 2023年01月27日 0 点赞 0 评论 358 浏览 评分:9.9