主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
活着的传奇
这个人很懒,什么都没有写...
关注
发消息
文章
1
题解
31
发帖
0
笔记
0
Ta的粉丝
81
关注数
0
粉丝数
81
获赞数
5
阅读数
25313
简单的求和 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int a,n; int s=0;int h=0; cin>>a>>n; while(n--){ s=s*10+a;...
P1083
2023年9月1日 15:45
回复 0
|
赞 0
|
浏览 745
求最大值 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int a[10]; while(cin>>a[0]){ for(int i=1;i<10;i++) { ...
P1361
2023年8月31日 11:24
回复 1
|
赞 1
|
浏览 781
特殊排序 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int n; while(cin>>n){ int a[n]; for(int i=0;i<n;i++){ ...
P1400
2023年8月30日 10:36
回复 0
|
赞 0
|
浏览 839
密码翻译 题解:
数组定为100真的只能通过百分之30,要1000才可以。 #include<bits/stdc++.h> using namespace std; int main(){ char s[1000]; while(gets(s)){ for(int i...
P1179
2023年8月29日 11:07
回复 0
|
赞 0
|
浏览 903
数字反转 题解:
#include<bits/stdc++.h> using namespace std; int fanzhuanshu(int n){ int s=0;int a; while(n>0){ a=n%10; s=s*10+a; n...
P1276
2023年8月29日 10:36
回复 0
|
赞 0
|
浏览 867
求最大最小数 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int n; while(cin>>n){ int a[n]; for(int i=0;i<n;i++){ cin>...
P1163
2023年8月28日 15:51
回复 0
|
赞 0
|
浏览 667
快速排序 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int n;cin>>n; int a[n]; for(int i=0;i<n;i++){ cin>>a[i]...
P1590
2023年8月28日 15:48
回复 0
|
赞 0
|
浏览 707
分数求和 题解:
#include<bits/stdc++.h> using namespace std; int main(){ float a,b;float s; int n;cin>>n; a=1;b=2;s=0; while(n--){ s+=b/a; ...
P1047
2023年8月28日 10:15
回复 0
|
赞 0
|
浏览 850
水仙花数 题解:
注意输入输出格式问题,换行和输入不为 #include<bits/stdc++.h> using namespace std; int shuixianhua(int i){ int a,b,c; c=i%10; b=(i/10)%10; a=i/100;...
P1034
2023年8月25日 11:01
回复 0
|
赞 0
|
浏览 1.2k
素数 题解:
#include<bits/stdc++.h> using namespace std; int issushu(int k){ int i; for(i=2;i<k;i++) { if(k%i==0){ return 0; ...
P1375
2023年8月25日 10:13
回复 0
|
赞 0
|
浏览 753
三个数的最大值 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; printf("%d",c>(a>b?a:b)?c:...
P1036
2023年8月25日 09:55
回复 0
|
赞 0
|
浏览 688
字符串内排序 题解:
#include<bits/stdc++.h> using namespace std; int main(){ char s[200]; while(scanf("%s",s)!=EOF){ int n=strlen(s); sort(s,s+...
P1360
2023年8月24日 16:49
回复 0
|
赞 0
|
浏览 687
字符串排序 题解:
#include<bits/stdc++.h> using namespace std; int main(){ char s[20]; while(scanf("%s",s)!=EOF){ int n=strlen(s); sort(s,s+n...
P1254
2023年8月23日 16:50
回复 0
|
赞 0
|
浏览 882
整数奇偶排序 题解:
存入数组然后排序,然后前后遍历就可以了。 #include<bits/stdc++.h> using namespace std; int main(){ int a[10]; while(cin>>a[0]>>a[1]>>a[...
P1248
2023年8月23日 11:09
回复 0
|
赞 0
|
浏览 573
阶乘和 题解:
#include<bits/stdc++.h> using namespace std; long long f(int n){ long long int s=0;long long int a; if(n==0) return 1; for(int i=1;i...
P1044
2023年8月23日 10:46
回复 0
|
赞 0
|
浏览 647
反序输出 题解:
#include<bits/stdc++.h> using namespace std; int main(){ char s[4]; while(scanf("%s",s)!=EOF){ for(int i=3;i>=0;i--){ ...
P1155
2023年8月22日 17:01
回复 0
|
赞 0
|
浏览 646
反序相等 题解:
#include<bits/stdc++.h> using namespace std; int fanxushu(int i){ int b;int s=0; while(i>0){ b=i%10; s=s*10+b; ...
P1461
2023年8月22日 16:17
回复 0
|
赞 0
|
浏览 628
最大公约数 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c;cin>>a>>b; if(a>b){ int d=a; &...
P1353
2023年8月22日 11:12
回复 0
|
赞 0
|
浏览 598
判断是否是整数 题解:
用判断是不是等于强制转换就可以了 #include<bits/stdc++.h> using namespace std; int main(){ float a; while(scanf("%f",&a)!=EOF){ if...
P1031
2023年8月22日 11:05
回复 0
|
赞 1
|
浏览 830
平方和与倒数和 题解:
#include<bits/stdc++.h> using namespace std; int main(){ int a;float b,c; cin>>a>>b>>c; float s=0; for(int i=1;i&...
P1045
2023年8月22日 10:56
回复 0
|
赞 1
|
浏览 738
1
2
本科学校:西南交通大学希望学院
目标学校:西南科技大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!