主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Timtam
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
7
发帖
1
笔记
2
Ta的粉丝
436
关注数
0
粉丝数
436
获赞数
1
阅读数
55553
x进制转y进制
#include<bits/stdc++.h> using namespace std; //x进制转为y进制 int main(){ int a; string s; int b; cin>>a>&g...
P1239
2021年2月20日 18:25
回复 0
|
赞 0
|
浏览 7.4k
简单模拟,穷举法
/* 鸡兔同笼问题,穷举法 */ #include<bits/stdc++.h> using namespace std; int more=0,Less=INT_MAX; //更新最多最少的动物数 void funtion(int i,i...
P1266
2021年2月20日 18:00
回复 0
|
赞 0
|
浏览 8.0k
简单模拟
#include<bits/stdc++.h> using namespace std; void input(int **matrix,int m,int n){ for(int i=0;i<m;i++){ for(int j=0...
P1407
2021年2月20日 17:51
回复 0
|
赞 0
|
浏览 6.5k
转置判断
其实就是一个判断矩阵转置和原矩阵相同,手动分配二维数组,然后遍历对比 #include<bits/stdc++.h> using namespace std; bool judge(int **matrix,int n){ for(int i=...
P1409
2021年2月20日 17:27
回复 0
|
赞 0
|
浏览 6.8k
STL解法
#include<bits/stdc++.h> using namespace std; int main(){ vector<string> v; string s; int max,min; max=0,min=1500; whi...
P1418
2021年2月20日 17:09
回复 0
|
赞 0
|
浏览 7.3k
string类做法
#include<bits/stdc++.h> using namespace std; int main(){ string s,oranginal,substitue; while(getline(cin,s)&&cin>...
P1196
2021年2月20日 17:02
回复 0
|
赞 1
|
浏览 7.9k
依照题意,递归求解
#include<bits/stdc++.h> using namespace std; double funtion(double x,int n){ if(n==0) return 1; if(n==1)...
P1094
2021年2月20日 16:22
回复 0
|
赞 0
|
浏览 6.4k
本科学校:华南理工大学
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!