无敌大牛牛无敌
无敌大牛牛无敌
全部文章
ACM
GitHub(1)
Java学习(1)
Python(40)
SQL(2)
Web前端(21)
work(1)
代码那点事(4)
数据结构(40)
机器学习(1)
牛客21天训练(大二部)(7)
计算机组成原理(9)
计算机网络(1)
软件使用和环境搭建(15)
归档
标签
去牛客网
登录
/
注册
黑科技交流
乐在分享好玩的软件、教程,如有侵权请私信
全部文章
/ ACM
(共68篇)
HDU2015偶数求和
#include <stdio.h> #include <string.h> int main() { int n,m,s,sum,t; int i,j[101]; int a; while (scanf("%d",&n)!...
2020-12-21
0
551
HDU2016数据交换
#include <iostream> #include <algorithm> using namespace std; int main() { int n,i; int a[101]; //int b[101]; int k,j,m; ...
2020-12-21
0
437
C++学生信息管理系统V1(课后作业)
#include <iostream> #include <cstring> #include <bits/stdc++.h>//C++万能头文件 #include <algorithm> #include <cstdlib> u...
2020-12-21
0
526
HDU2018题求母牛数量C++
#include <iostream> using namespace std; int main() { int a[55],n; int i; a[0]=1,a[1]=2,a[2]=3,a[3]=4; while(cin>>n) { ...
2020-12-21
0
394
hdu2021发工资咯(C++)
#include <iostream> using namespace std; int mount(int j) { int num=0; while(j!=0) { if(j>=100) j-=100; else if(j>=50...
2020-12-21
0
362
hdu2022海选女主角(C++)
#include <iostream> #include <cmath> #include <cstdlib> using namespace std; int main() { int m,n; int max,i,k,j,x,y; ...
2020-12-21
0
376
HDU2023求平均成绩
#include <stdio.h> int main() { int n,m; int i,k,j; int a,b,c,t; double sco[51][6],sum,sum1; double d[6]; while(scanf("%d...
2020-12-21
0
366
蛇形填数(C++)
#include <iostream>//蛇形填数 #include <iomanip>//控制输出长度,方便数据对齐 using namespace std; int main() { int a[101][101]={0}; int i=1,...
2020-12-21
0
491
简单的石头剪刀布(机器胜率略高)
#include <iostream> #include <cstdlib> #include <ctime> using namespace std; int main() { srand(time(NULL)); int a,b,c;...
2020-12-21
0
334
HDU2024C语言合法标识符
#include <stdio.h> #include <string.h> int main() { char str[50]; int n,i,j,len; scanf("%d",&n); getchar(); while(n--) ...
2020-12-21
0
285
首页
上一页
1
2
3
4
5
6
7
下一页
末页