ZukaiMobby
ZukaiMobby
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ZukaiMobby的博客
全部文章
(共17篇)
题解 | #Integer Inquiry#
#include <string.h> #include <algorithm> #include <iostream> #define MAX_DIGITS 1000 using namespace std; void add(char a[], char b...
2023-02-03
1
296
题解 | #数字之和#
#include <iostream> int func(int x) { int res = 0; while (x != 0) { res += x % 10; x /= 10; } return res; } int...
2023-02-03
0
311
题解 | #Old Bill#
// the old bill #include <iostream> int main() { int N; //number of turkeys while (scanf("%d", &N) == 1) { int X, Y, Z; ...
2023-02-03
0
329
题解 | #位操作练习#
#include <stdio.h> int main(){ unsigned short int a,b; int len = sizeof(unsigned short int)*8; unsigned short int shifted=0; ...
2023-02-02
0
308
题解 | #n的阶乘#
#include <stdio.h> long int factorial(int n){ long int res=1; for(int i=n;i>=1;i--) res *=i; return res; } int main(){ int...
2023-02-02
0
203
题解 | #今年的第几天?#
#include <iostream> #include <time.h> #include <math.h> int main(){ int y,m,d; while(scanf("%d %d %d",&y,&m,&d)==3){ ...
2023-02-02
0
240
题解 | #成绩排序#
#include <iostream> #include <algorithm> using namespace std; int Partition(int A[], int B[], int low, int high) { int pivot = A[low]...
2023-02-02
0
271
首页
上一页
1
2
下一页
末页