用户抉择
用户抉择
全部文章
分类
题解(58)
归档
标签
去牛客网
登录
/
注册
用户抉择的博客
全部文章
(共78篇)
暴力破解a+b
#include <stdio.h> #include <string.h> char num[10][6]={"zero","one","two","three","four","five","six","seven","eight","ni...
2021-03-08
2
624
自定义排序函数
#include <stdio.h> #include <string.h> typedef struct stu{ char id[21]; &nbs...
2021-03-08
1
592
计算平均值
#include <stdio.h> int main() { double a[12],sum=0; for(int i=0;i<12;i++)...
2021-03-07
1
462
最大序列和(C语言)
有点类似递增数列求和 #include <stdio.h> int main() { int n,i,max; while(scanf("%d",&...
2021-03-03
5
671
混合题目
还是畅通工程+流通图=畅通工程 #include <stdio.h> typedef struct Edge{ int from,to,len; }Edge; Edge e[1000...
2021-02-28
1
529
考察函数运用
#include <stdio.h> int convert(int a) { int b=0; while(a>0) ...
2021-02-17
1
443
ASCII码
#include <stdio.h> #include <string.h> int main(){ int i,len; char&nb...
2021-02-07
12
638
循环实现数组递归
#include <stdio.h> int main(){ int a0,a1,p,q,k; int i; &n...
2021-02-04
8
911
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页