主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Hegel
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
79
发帖
0
笔记
4
Ta的粉丝
221
关注数
2
粉丝数
221
获赞数
46
阅读数
198275
水仙花数,各位的三次方之和为它本身
#include <iostream> using namespace std; int main() { int m,n; cin>>m>>n; while(!(m==0&&n==0)){ int flag=0; ...
P1034
2023年3月18日 20:31
回复 0
|
赞 0
|
浏览 3.0k
上n个楼层,上楼6秒下楼4秒,每层停3秒,共几秒
#include <iostream> using namespace std; int main() { int T,n; cin>>T; for(int i =0;i<T;i++){ cin>>n; int *a =...
P1005
2023年3月18日 20:05
回复 0
|
赞 0
|
浏览 2.2k
多组成绩排序,结构体+链表实现
#include <iostream> #include <string> using namespace std; typedef struct stu { string name; float sco; struct stu* next; ...
P1151
2023年3月18日 19:29
回复 0
|
赞 0
|
浏览 2.7k
输出字符串中的字母,数字和其他字符
#include <iostream> #include <string> using namespace std; int main() { string s,z="",n="",e=""; cin>>s; for(int i=0;i...
P1016
2023年3月18日 16:40
回复 0
|
赞 0
|
浏览 2.7k
十进制转二进制
#include <iostream> using namespace std; int main() { unsigned int a; while (cin >> a) { string res = ""; while (a > 0...
P1380
2023年3月18日 16:35
回复 0
|
赞 0
|
浏览 2.3k
十六进制转十进制
#include <iostream> #include <string> using namespace std; int main() { string c; while (cin >> c) { int sum = 0, t =...
P1259
2023年3月18日 16:23
回复 0
|
赞 0
|
浏览 2.9k
字符串首字母大写
#include <iostream> #include <string> using namespace std; int main() { string s; while(getline(cin, s)){ if(s[0]>='a'...
P1240
2023年3月18日 15:54
回复 0
|
赞 0
|
浏览 2.5k
输出所有5位二进制数
#include <iostream> using namespace std; int main(){ int a[6] = {0,0,0,0,0,0}; for(int i =0;i<64;i++){ for(int j =0;j<6;j++)...
P1001
2023年3月18日 15:20
回复 0
|
赞 2
|
浏览 2.6k
1-20选5个数,求未被选中的数与选中的5个数之和
#include <iostream> #include <random> using namespace std; int main() { srand(time(0)); int a[5],sum = 0; for(int i = 0;i<...
P1009
2023年3月18日 15:19
回复 0
|
赞 0
|
浏览 3.5k
删除字符串中的某些连续字符
先附上完整代码 #include <iostream> #include <string> using namespace std; int main() { string s, m = "GZU", res = ""; getline(cin,...
P1027
2023年3月18日 15:10
回复 0
|
赞 2
|
浏览 3.0k
十进制转二进制,数二进制中01各个的数量
#include <iostream> using namespace std; int main() { int n,i=0; cin>>n; while(n>0){ if(n==1) i++; n/=2; } c...
P1008
2023年3月17日 19:31
回复 0
|
赞 0
|
浏览 2.7k
两翻转数的和
#include <iostream> using namespace std; int Rev(int n){ int res =0; while(n>0){ res =res*10+n%10; n/=10; } return res; ...
P1003
2023年3月17日 19:20
回复 0
|
赞 0
|
浏览 2.6k
求四位数,它的9倍正好是它的反序数
#include <iostream> using namespace std; int Rev(int n){ int res =0; while(n>0){ res =res*10+n%10; n/=10; } return res; ...
P1454
2023年3月17日 19:01
回复 0
|
赞 0
|
浏览 4.4k
简单加密,字符串中的字母后移三位
#include <iostream> #include <string> using namespace std; int main() { string s; getline(cin, s); for (int i = 0; i < s....
P1014
2023年3月17日 17:07
回复 0
|
赞 0
|
浏览 3.5k
多个范围利润提成
#include <iostream> using namespace std; int main() { float sum =0,a; cin>>a; if(a<=100000) sum=a*10/100; else if(a&l...
P1040
2023年3月17日 16:41
回复 0
|
赞 0
|
浏览 2.9k
判断素数
#include <iostream> using namespace std; bool Jud(int a){ if(a<=1) return false; for(int i = 2;i<a;i++) if(a%i==0) ...
P1013
2023年3月17日 16:29
回复 0
|
赞 1
|
浏览 3.1k
已知4.12日周四,输入日期求周几
#include <iostream> #include <string> using namespace std; int main(){ int m,d,sum =0; string week[7]={"Monday","Tuesday","Wed...
P1011
2023年3月17日 16:19
回复 0
|
赞 1
|
浏览 3.0k
输入字符串s,将其所有数字字符移动到非数字字符之后
#include <iostream> #include <string> using namespace std; int main(){ string s,c= "",n = ""; cin>>s; for(int i =0;i&l...
P1012
2023年3月17日 15:56
回复 0
|
赞 1
|
浏览 2.6k
给出左右边界,统计2出现次数
#include <iostream> using namespace std; int main(){ int l,r,sum =0; cin>>l>>r; for(int i = l;i<=r;i++){ int temp...
P1002
2023年3月17日 15:48
回复 0
|
赞 3
|
浏览 2.9k
1
2
3
4
本科学校:郑州轻工业大学
目标学校:内蒙古大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!