imthewinger
imthewinger
全部文章
分类
归档
标签
去牛客网
登录
/
注册
imthewinger的博客
全部文章
(共33篇)
题解 | #百鸡问题#
#include <iostream> using namespace std; int main() { int x,y,z; int n; cin>>n; for(x=0;x<=100;x++) { fo...
2023-02-14
0
314
题解 | #与7无关的数#
#include <iostream> using namespace std; bool detect(int a) { int s; while(a!=0) { s=a%10; if(s==7) { ...
2023-02-14
0
292
题解 | #对称平方数1#
#include <iostream> using namespace std; int reverse(int a) { int revs=0; while(a!=0) { revs*=10; revs+=a%10; ...
2023-02-14
0
254
首页
上一页
1
2
3
4
下一页
末页