首页
DreamJudge
院校信息
考研初试
考研复试
保研专区
讨论区
兑换中心
登录
注册
上岸
软件工程 1217
对于仅存储静态数据的系统来说,_____模型并没有什么意义,但它在开发交互式系统
yxc小迷妹
动态
软件工程 1212
与多重继承相反的是________继承。
yxc小迷妹
单重
P1084
陶陶摘苹果 题解:c++ ,正常写
bro
#include <bits/stdc++.h> using namespace std; int main() { int sum = 0; int num[11] = {0}; ...
P1422
进制转换3 题解:
笨蛋也想学机试
#include<bits/stdc++.h> using namespace std; int main(){ int x,y; char s[105]; ...
P1008
0和1的个数 题解:
mlx
#include<iostream> #include<algorithm> #include<vector> using namespace std; int n; vector<int> num; int main()...
华北电力大学(保定)
计算机系-2025年一志愿考生复试名单
考研小帮手
附件:计算机系2025年一志愿考生复试名单
P1062
杨辉三角形 题解:
yauqq
#include<bits/stdc++.h> using namespace std; int main(){ int n; while(cin >> n){ if(n == 0) return 0; els...
P1026
删除字符串 题解:c++采用字符串相关函数写法
bro
#include <bits/stdc++.h> using namespace std; int main() { string s; cin >> s; string...
P1394
统计单词 题解:
SpontySoul
#include <bits/stdc++.h> using namespace std; int main() { string s; while(getline(cin, s)){ size_t len = s.size(); ...
P1394
统计单词 题解:
yauqq
#include<bits/stdc++.h> using namespace std; int main(){ char c; int length = 0; while(cin.get(c)){ if(c == '.'){ if(length ...
P1411
二叉排序树2 题解:
mlx
#include<iostream> #include<map> using namespace std; const int N=110; struct tr{ int value; tr *l,*r; }; int n; v...
P1095
题目难点:数学公式不断化解
月溅星河
这个题表面上看起来无从下手,实际上需要我们运用学过的数学公式进行化解。 题目给的四个式子 X+Y=A X^2+Y^2=B X^3+Y^3=C X^4+Y^4=D 我们需要用到三个公式,即平方和、立方和、四次方和 X^2+Y^2 = (X + Y)^2 ...
政治
2026年考研思想政治理论考试试题 - 第17题回答
yyyyyyyyyyy
BD 评分及理由 本题为多项选择题,标准答案为BD。学生作答为“BD”,与标准答案完全一致。 选项分析: 选项A“物质存在的客观性只有通过人们具体的感知而得到确证”表述错误。物质存在的客观性不依赖于人的感知,暗物质的存在正是通过其引力效应(而非直接感知)被认识的,这恰恰证明了物质存在不依赖...
数据结构
2014年(408)计算机学科专业基础综合试题 - 第41题回答
无名1
评分及理由 (1)得分及理由(满分3分) 学生给出的基本设计思想是“对二叉树进行中序遍历,当遇到叶结点时计算当前树高乘该结点权值,并用wpl全局变量计算累和”。这与标准答案中基于先序遍历的思想本质一致,都是通过递归遍历,在访问到叶子结点时累加深度与权值的乘积。虽然学生提到的是“中序遍历”...
P5324
二进制回文层数统计 题解:
wjj762
#include<bits/stdc++.h> using namespace std; bool huiwen(int w[], int len) { int f = 0, r = len - 1; while ...
P1051
日期计算 题解:
曾不会
每个条件都要看到 #include<stdio.h> int a[13]={0,31,28,31,30,31,30,31,31,30,31,30,31}; int fun(int x){ if(x%4==0&&x%1...
P1454
反序数 题解:
mlx
#include<iostream> #include<algorithm> using namespace std; int main() { for(int i=1000;i*9<10000;i++) { string s1=to...
P1062
杨辉三角形 题解:c++ ,普通的循环赋值再遍历,好理解
bro
#include <bits/stdc++.h> using namespace std; int main() { int n ; while(cin >> n) { ...
政治
2026年考研思想政治理论考试试题 - 第32题回答
yyyyyyyyyyy
ABC 评分及理由 本题为多项选择题,标准答案为BCD。学生作答为ABC。 具体分析如下: 选项B(农业传统生产的科技突破)是农业新质生产力的核心内涵之一,体现了以科技创新驱动生产力跃升,学生选择正确。 选项C(农业生产要素引入与集成)符合新质生产力关于生产要素创新性配置的要求,学生选择正...
P1012
字符移动 题解:
hjkl
#include<iostream> #include<string> int main(){ std::string str,front,back; std::cin>> ...
P1027
删除字符串2 题解:C++
Jun_
#include<stdio.h> #include <iostream> #include<math.h> #include <stdlib.h> #include <string> #include<algorit...
P1417
八进制 题解:c++
bro
#include<bits/stdc++.h> using namespace std; int main(){ int n ; int ch[30]; while(cin >&...
P1042
字符个数 题解:
曾不会
s=input() count0=0 count1=0 count2=0 count3=0 for i in s: if(i.isalpha()): count0+=1 elif i.isdigit(): count1+=1...
P1091
促销计算 题解:
曾不会
#include<stdio.h> int main() { double k; while(scanf("%lf",&k)!=EOF) &n...
P1095
Y/N 题解:
yauqq
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; while(cin >> a >> b >> c >> d){ if((...
P1007
整除 题解:
2568715672
#include <stdio.h> int main(){ int count=0; for(int i=100;i<=1000;i++){ &nb...
P1041
最大公约数和最小公倍数 题解:
曾不会
#include<stdio.h> int fun1(int x,int y)//最大公约数 { for(int i=x;i>=1;i--) { &nb...
P1479
01字符串 题解:
yauqq
#include<bits/stdc++.h> using namespace std; int main() { int n; int dp[10005]; while (cin >> n) { dp[1] = 1...
P1388
查找1 题解:
mlx
#include<iostream> #include<cstring> using namespace std; const int N=1010; int n,m,s[N]; int main() { while(cin>>...
政治
2026年考研思想政治理论考试试题 - 第25题回答
yyyyyyyyyyy
ABD 评分及理由 本题为多项选择题,标准答案为ABD。学生作答为“ABD”,与标准答案完全一致。 根据题目要求,正确则给2分,错误、多选或少选则给0分。学生答案正确,无逻辑错误,思路与标准答案一致。 因此,本题得分为:2分。 题目总分:2分
清华大学
2026清华软件工程真题回忆贴
考研小帮手
数据结构 一、 1、abcdefg依次入栈,不可能的出栈序列为: 2、abcdefg依次入栈,出栈顺序为p1,p2,p3,p4………若p2为b,则p3可能的数的个数为: 3、求一个中缀数的前缀表达式为: ...
华北电力大学(保定)
华北电力大学(保定)计算机系2025年硕士研究生复试成绩查询(一志愿)
考研小帮手
一、成绩查询 请考生输入自己的姓名、身份证号,可以查询到自己的复试笔试成绩、复试外语听力口语成绩、复试专业综合面试成绩以及复试总成绩。 成绩查询地址:https://l4onyo9d.yichafen.com/qz/173D6o2GDt 二、成绩复查 如考生对自己笔试成...
P1479
01字符串 题解:
曾不会
#include<stdio.h> int main() { int n; scanf("%d",&n); long long i...
政治
2026年考研思想政治理论考试试题 - 第22题回答
mscmscmsc
ABCD 评分及理由 本题为多项选择题,标准答案为ABCD。学生作答为“ABCD”,与标准答案完全一致。 根据题目要求,正确则给2分,错误、多选或少选均给0分。学生答案正确,无逻辑错误,思路与标准答案一致,符合“思路正确不扣分”的原则。 因此,本题得分为2分。 题目总分:2分
新疆大学
云南大学信息学院2025年硕士研究生招生复试录取工作实施细则
考研小帮手
根据《云南大学2025年硕士研究生招生复试录取工作实施办法》等相关文件要求,结合我院实际,特制定本实施细则。 一、组织管理 信息学院依法依规开展2025年硕士研究生招生复试及录取工作,严格规范执行国家招生政策,坚持综合评价、择优录取,确保安全、公平、科学,切实增强服务意识,做好硕士...
P1417
八进制 题解:
奶龙大王
数字嘉陵变字符,字符数减零变数字 #include <stdio.h> #include <string.h> #include<iostream> using namespace st...
P1380
二进制数 题解:
曾不会
#include<stdio.h> #include<string.h> int main() { int n; scanf("%d",&n); &nbs...
P1012
字符移动 题解:C++
Jun_
#include<stdio.h> #include <iostream> #include<math.h> #include <stdlib.h> #include <string> #include<cctype&...
申论
2025年国家公考《申论》题(副省级) - 第1题回答
YSLOVEZXY
三条“黄河”: 原型黄河——自然河道本体; 数字孪生黄河——实体“装进”计算机,实时映射、预报预警预演预案; 模型黄河——实...
P1081
猴子报数 题解:
曾不会
//数组保存,思路一定要清晰 #include<stdio.h> int main() { int n; while(scanf("%d",&n)!=EOF) &...
新疆大学
软件学院2025年硕士研究生复试细则
考研小帮手
为做好我院2025年硕士研究生招生复试录取工作,根据《教育部关于印发〈2025年全国硕士研究生招生工作管理规定〉的通知》《关于做好2025年全国硕士研究生招生复试录取工作的通知》《关于做好自治区2025年全国硕士研究生招生复试录取工作的通知》《新疆大学2025年全国硕士研究生招生考试复试录取办...
P1021
复数 题解:
曾不会
#include<stdio.h> int main() { double x1,x2,y1,y2; char s;  ...
政治
2026年考研思想政治理论考试试题 - 第21题回答
yyyyyyyyyyy
BC 评分及理由 本题为多项选择题,标准答案为BC。学生作答为“BC”,与标准答案完全一致。 选项A“文明之间的交流主要通过河流完成的”表述过于绝对。河流是文明交流的渠道之一,但并非主要或唯一渠道,如陆上丝绸之路、海上航线等也是重要交流途径。因此A错误。 选项B“每一种文明都产生于独特的自然...
P1015
单链表 题解:
mlx
#include<iostream> #include<algorithm> #include<vector> using namespace std; vector<int> a; struct Node{ int x; ...
P1240
首字母大写 题解:
wanghao0908
#include<bits/stdc++.h> using namespace std; int main() { string str; while (getline(cin, str)) &...
P1002
数字统计 题解:
曾不会
#include<stdio.h> #include<string.h> int fun(int x) { int s=0; while(x!=0) &nb...
P2007
奇数还是偶数 题解:
mlx
#include<iostream> using namespace std; int n; int main() { cin>>n; if(n%2==0) cout<<"even number"; else co...
P1012
字符移动 题解:c++ 直接用string,算取巧吗
bro
#include <bits/stdc++.h> using namespace std; int main() { string s,a,b; cin >> s; fo...
P1216
旋转方阵 题解:
ljh61
#include <bits/stdc++.h> using namespace std; int main(){ int n; int DIRS[4][2] = {{1,0},{0,1},{-1,...
P1013
判断素数 题解:
曾不会
#include<stdio.h> #include<math.h> int fun(int x) { for(int i=2;i<=sqrt(x)+1;i++) { &nbs...
P1900
删除数字 题解:
“钟”国制造
这道题使用两次排序去除最大数字的做法是错误的,比如输入10200 1的测试数据输出的是1000而非正确的最小值200.但是由于垃圾数据点的问题这里仍能通过测试。 正确做法应该是从左往右扫描字符串,维护一个非减部分尽可能长的栈,让较小的数尽可能靠前 #include<bit...
P1216
旋转方阵 题解:
kawhileo
#include<bits/stdc++.h> using namespace std; int main(){ //构造二维数组 int n; scanf("%d"...
1
2
我要提问
全站热榜
1
无法正确通过题目都是哪些原因造成的?
2
[置顶]计算机考研择校分析【25考研必读】
3
机试如何才能快速提高?
4
题目难点:数学公式不断化解
5
【25计算机考研】39所985院校录取分数线汇总
6
A+B问题 题解:C
7
【23计算机考研】39所985院校录取分数线汇总
8
逻辑很简单,但是实现却要小心多多
9
计算机/软件学校排名!全国第五轮学科评估结果
10
1017 幂次方 快速幂模板