悟空

这家伙很懒,什么也没写
文章
8
评论
4
加入时间
3年前
等级
排名
1741
学校

高精度加法(vector) c++ 简单易懂

摘要:#include <iostream> #include <vector> using namespace std; vector<int> add(vector<int> &x,vector<……

排序(c++ sort)

摘要:参考代码:#include<iostream>#include <algorithm>using namespace std;int main(){            int n;    whil……

高精度加法

摘要:参考代码:#include <iostream> using namespace std; const int maxn = 1000; string x,y; int a[maxn],b……

分段函数 -- 简单明了

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    double n;    scanf("%lf",&n);    if(0<=n && n<5) / /注……

骑车与走路

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n);int bx = n / 1.2;int bike = n / 3.……