主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
huangdashuaige
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
28
发帖
0
笔记
1
Ta的粉丝
221
关注数
0
粉丝数
221
获赞数
17
阅读数
88030
P1031 判断是否是整数
#include <iostream> using namespace std; int main(){ double n=0.0;//双精度数声明(单精度应该也可以) while(cin>&...
P1031
2023年2月20日 18:22
回复 0
|
赞 0
|
浏览 3.0k
P1053 偷菜时间表
#include <iostream> #include <string> using namespace std; int shu(string h){ //此函数用于将字符转换为整数  ...
P1053
2023年2月20日 17:46
回复 0
|
赞 1
|
浏览 3.4k
P1102 素数判定
#include <iostream> #include <math.h> using namespace std; int sw(int &a,int &b){ //该函数用于保障a<b  ...
P1102
2023年2月20日 16:20
回复 0
|
赞 1
|
浏览 3.2k
P1156 质因数个数
#include <iostream> #include <math.h> using namespace std; int main(){ //此为暴力解;核心思想:非质因数必定也可以分解成质因数  ...
P1156
2023年2月20日 14:59
回复 0
|
赞 2
|
浏览 3.4k
P1394 统计单词
#include <iostream> using namespace std; int main(){ int i,m,n[100]; //i用于记录输入字符遍历的位置,m用于记录总共有几个单词,...
P1394
2023年2月20日 13:12
回复 0
|
赞 0
|
浏览 3.0k
P1045 平方和与倒数和
#include <iostream> #include <stdio.h> using namespace std; int main(){ int a,b,c; double su...
P1045
2023年2月19日 23:32
回复 0
|
赞 1
|
浏览 3.2k
P1392 杨辉三角形 - 西北工业大学
#include <stdio.h> #define N 22 int main() { int i, j, k, n, a[N][N]; /*定义二维数组a[22][22]*/ &nb...
P1392
2023年2月19日 20:40
回复 0
|
赞 1
|
浏览 3.5k
P1067 括号的匹配
#include <iostream> #include <stack> #include <string> using namespace std; int main(){ //使用栈实现括号匹配 &nbs...
P1067
2023年2月19日 20:39
回复 0
|
赞 0
|
浏览 3.4k
P1377 旋转矩阵 - 北航
#include <iostream> using namespace std; int main(){ //猜:限定顺时针选择(猜对了) int n,an; ...
P1377
2023年2月18日 23:25
回复 0
|
赞 1
|
浏览 3.5k
P1290 日期差值
//本题学习自《2021王道机试指南》p15,预处理 #include <stdio.h> #define ISYEAP(x) (x%100!=0 && x%4==0) || x%400==0?1:0 //定义宏判断闰年 int dayofMonth[13]...
P1290
2023年2月18日 20:49
回复 0
|
赞 0
|
浏览 3.6k
P1022 删除最大最小数
#include <iostream> using namespace std; int main(){ int N,tmin,tmax,tmi,tma; /*N:下面将输入N个整数;tmin:最小...
P1022
2023年2月18日 19:33
回复 0
|
赞 0
|
浏览 3.0k
P1292 字母统计
#include <iostream> #include <string> using namespace std; typedef struct a_z{ char zm; int ...
P1292
2023年2月17日 20:00
回复 0
|
赞 0
|
浏览 3.0k
P1388 查找1
#include <iostream> using namespace std; int main(){ //暴力解 int n,m,mm;//n要输入n个整数,m再输入m整数,mm是中介值 &n...
P1388
2023年2月17日 18:02
回复 0
|
赞 1
|
浏览 2.9k
P1026 删除字符串
#include <iostream> #include <string> using namespace std; int main(){ string s; cin>>...
P1026
2023年2月17日 16:32
回复 0
|
赞 1
|
浏览 2.6k
P1159 成绩排序2.0
#include <iostream> #include <algorithm> using namespace std; typedef struct st_nc{ //声明结构体 ...
P1159
2023年2月17日 15:13
回复 0
|
赞 1
|
浏览 2.8k
P1018题解 - 链表操作
#include <iostream> using namespace std; typedef struct LNode{ int data; struct LNode *next; }LNod...
P1018
2023年2月16日 14:04
回复 0
|
赞 2
|
浏览 3.2k
P1019题解
#include <iostream> using namespace std; int main(){ /*思路:用一个字符串记字符,一个数组次序代替26个字母(也可以使用map<char,int>或vector) &nb...
P1019
2023年2月15日 23:49
回复 0
|
赞 1
|
浏览 3.7k
P1020题解
#include <iostream> using namespace std; int main(){ int n; while(cin>>n){  ...
P1020
2023年2月15日 21:27
回复 0
|
赞 0
|
浏览 3.2k
P1375题解
#include <iostream> #include <math.h> using namespace std; bool judge(int x){ //该函数用于判断x是否是质数  ...
P1375
2023年2月15日 21:26
回复 0
|
赞 0
|
浏览 2.8k
P1383题解
#include <iostream> using namespace std; int main(){ int n[1001],x,k; //x用于明确该组数有多少个数,数组n记录输入数值并置1,...
P1383
2023年2月15日 21:26
回复 0
|
赞 0
|
浏览 3.2k
1
2
本科学校:深圳技术大学
目标学校:深圳大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!