-
个人简介
https://www.crazygames.com/game/moto-x3m
很多时候,我们自认为比人强,就随意嘲笑他人。殊不知,实际上自身也有不如人意的地方。
求阴影面积: #include<iostream> #include<cstring> using namespace std; int main(){ double a,s; cin>>a; s=a*a; s=s/2; printf("%.2lf",s/2); return 0; }
递归生成字典: #include<iostream> #include<cstring> using namespace std; int main(){ int n; cin>>n; for(int i=1;i<=n;i++){ if(i==n){ cout<<"{"; }else{ cout<<"{"<<i<<": "; } } for(int j=1;j<=n;j++){ cout<<"}"; } return 0; }
//判断素数: i<n , i<sqrt(n) , i*i<n , i<=n/i;
这都能运行:
#include<iostream> #include<cstring> using namespace std; int main(){ int $; cin>>$; cout<<$; return 0; }
-
通过的题目
-
最近活动
题目标签
- 初窥门径
- 50
- 字符串
- 23
- 顺序结构
- 22
- 略有小成
- 17
- 分支结构
- 12
- 驾轻就熟
- 8
- GESP一级
- 7
- 一维数组
- 6
- 循环结构
- 5
- 循环嵌套
- 3
- 蓝桥杯
- 3
- 一本通编程启蒙
- 3
- 202306
- 2
- 202309
- 2
- 递归
- 2
- 搜索
- 2
- 枚举
- 2
- 样题
- 2
- GESP二级
- 2
- GESP
- 2