求求offer的土拨鼠很无聊
求求offer的土拨鼠很无聊
全部文章
分类
归档
标签
去牛客网
登录
/
注册
求求offer的土拨鼠很无聊的博客
全部文章
(共88篇)
题解 | #特殊排序#
#include <iostream> #include <algorithm> using namespace std; int smax(int* a,int n){ int mx=0; for(int i=0;i<n;i++){ if(a[i]>mx...
2023-02-26
0
289
题解 | #日期类#
#include <cstdio> #include <iostream> #include <iomanip> using namespace std; int isPyear(int y){ return (y%4==0 && y%100!=0)||(...
2023-02-26
0
265
题解 | #Day of Week#
#include <iostream> #include <functional> #include <iostream> #include <string.h> #include <stdlib.h> using namespace st...
2023-02-26
0
336
题解 | #日期差值#
#include <iostream> #include <functional> #include <iostream> using namespace std; int isPyear(int y){ return (y%4==0 && y%100!=...
2023-02-25
0
293
题解 | #Hello World for U#
#include <cstddef> #include <iostream> #include <string> using namespace std; int main() { string c; while(cin>>c){ int n...
2023-02-19
0
220
题解 | #Old Bill#
#include <iostream> using namespace std; int ctprice(int num,int a,int b,int c){ for(int i=9;i>=0;--i){ for(int j=9;j>=0;--j){...
2023-02-19
0
253
题解 | #与7无关的数#
#include <iostream> using namespace std; int is_rel7(int x){ if(x%7==0) return 1; int a=0; while(x>0){ a=x%10; ...
2023-02-19
0
205
题解 | #Digital Roots#
#include <iostream> #include <string> using namespace std; int dsum(int x){ while(x>=10){ int a=0; int k=x; while(k>0){ a+=k%10;...
2023-02-19
0
165
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页