1480: 模拟计算器 摘要:```cpp #include using namespace std; int main() { int a,b; char c; cin>>a>>b>>c; …… 题解列表 2023年01月30日 0 点赞 0 评论 543 浏览 评分:9.9
1671: 小九九 ```cpp#includeusingnamespacestd;intmain(){inti=1,p=1;for(p=1;p 题解列表 2023年01月29日 0 点赞 0 评论 881 浏览 评分:9.9
1670: 拆分位数 摘要:```cpp #include using namespace std; int main() { int n; cin>>n; cout…… 题解列表 2023年01月29日 0 点赞 0 评论 644 浏览 评分:9.9
1669: 求圆的面积 ```cpp#include#include#definepi3.1415926usingnamespacestd;intmain(){floatr;cin>>r;cout 题解列表 2023年01月29日 0 点赞 0 评论 743 浏览 评分:9.9
2953: 特殊日历计算 ```cpp#include#includeusingnamespacestd;inta[100],yue[13]={0,31,28,31,30,31,30,31,31,30,31,30,31};intmain(){intmyear=0,mmonth=0, 题解列表 2023年01月29日 0 点赞 0 评论 639 浏览 评分: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 评论 635 浏览 评分:9.9
2963: Tomorrow never knows? 摘要:输入的时候‘-’可以用getchar直接屏蔽掉 ```cpp #include #include using namespace std; bool IsLeapYear(int year)…… 题解列表 2023年01月29日 0 点赞 0 评论 581 浏览 评分:7.3
2969: 打印月历 ```cpp#includeusingnamespacestd;intfun(inta,intb,intq);intmain(){inti,j,m,n,t,d,s=0;cin>>m>>n;t=abs(fun(m,n,1));if(m%4==0&&m%100!=0||m%400==0)s=1;switc 题解列表 2023年01月29日 0 点赞 0 评论 962 浏览 评分:9.9
2797: 最高的分数 摘要:```cpp #include using namespace std; int main() { int a,n,max; cin>>n; max=0; …… 题解列表 2023年01月29日 0 点赞 0 评论 897 浏览 评分:9.9
表达式括号匹配(stack) 栈的基本应用 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;stack<char>ver;//存放'(' 如果遇到 ')…… 题解列表 2023年01月29日 0 点赞 0 评论 697 浏览 评分:0.0