主站
DreamJudge
院校信息
专业题库
机试真题
专业课程
讨论区
兑换中心
登录
注册
上岸
搜索
全 部
择校分析
笔经面经
学习交流
我要提问
站内公告
调剂专题
精彩爆料
解题报告
计算机组成原理 1345
若某数x的真值为–0.1010,在计算机中该数表示为1.0110,则该数所用的编
2375725034
发表于 9分钟前
回复 9+
|
赞 0
|
浏览 295
真值为–0.1010 -> 原码 -> 1.1010
计算机组成原理 1343
一个8位二进制整数采用补码表示,且由3个“1”和5个“0”组成,则最小值为()。
2375725034
发表于 27分钟前
回复 9+
|
赞 0
|
浏览 389
本题答案应该选C! -128:10000000 -127:10000001 -126:10000010 -125:10000011
计算机组成原理 1342
针对8位二进制数,下列说法中正确的是( )。
2375725034
发表于 33分钟前
回复 9+
|
赞 0
|
浏览 351
–127的补码为10000001 0的移码为10000000,和-127反码10000000 相同 +1的移码10000001 -127反码10000000 不同啊 0的补码等于00000000 –1的反码&...
计算机组成原理 1322
下列关于“自陷”(Trap,也称陷阱)的叙述中错误的是: A、自陷是通过陷阱指令
2375725034
发表于 1小时前
回复 9+
|
赞 0
|
浏览 2.9k
trap是主动去请求系统调用,属于内中断部分。
计算机组成原理 1321
某计算机有五级中断L4~L0,中断屏蔽字为M4M3M2M1M0,Mi=1(0≤i
2375725034
发表于 1小时前
回复 9+
|
赞 0
|
浏览 1.8k
L4→L0→L2→L1→L3 0→0→0→1→1 即 M0~M4: 01010
站内公告
N诺意见反馈专帖
admin
SVIP
发表于 4年前
在26分钟前回复
回复 114
|
赞 7
|
浏览 50.7k
Hi,你好,我们是N诺。我们是一个为了您考研更方便的存在,您可以理解成我们是一个题库,一个刷题的工具,一个学习的渠道,或者,一个认识更多志同道合计算机考研er的平台。 我们一直在努力,为了你使用过程更加流畅和顺利。所以如果你有任何吐槽,都请在评论中表达出来,让我们知晓 。 如果反馈的问题没...
我要提问
错题本在哪里啊?
jsh
发表于 6个月前
在3天前回复
回复 4
|
赞 0
|
浏览 465
错题本在哪里打开啊,没找到呢?
P1055
距阵相乘 题解:
snake
VIP
发表于 6天前
回复 0
|
赞 0
|
浏览 88
#include <stdio.h> #include <string.h> int main() { // 定义矩阵 int a[3][3]; int b[3][3]; int c[3][3] = {0}; // 遍历读入数据 f...
P1675
C++简单模拟
AlbertTuring
发表于 5个月前
在9天前回复
回复 1
|
赞 2
|
浏览 442
简单模拟 #include<iostream> #include<cstring> using namespace std; const int N = 20; char map[N][N]; bool st[N][N]; int ...
P1001
01序列 题解:
HarryRookie
发表于 1个月前
在10天前回复
回复 1
|
赞 1
|
浏览 262
评论区基本都是C/C++,这里给出一个Java的代码。 public class Main{ public static void main(String[] args){ for(int i=0;i<64;i++) Sys...
英语
考研英语——阅读技巧笔记
帅就一个字
发表于 13天前
回复 0
|
赞 0
|
浏览 229
不得不说,唐迟老师总结的英语阅读技巧真的很强大。 闲来无事,最近把阅读技巧课重新看了一遍,有了一些新的感悟,所以顺手总结出一份阅读技巧的思维导图笔记。 我发现之前学习时常犯的一个毛病:太过于钻入到知识的细节,忽略了整体框架。 遇到一个不会的知识点,就一心想要把它搞明白...
P1400
特殊排序 题解:
snake
VIP
发表于 14天前
回复 0
|
赞 0
|
浏览 156
#include<iostream> #include<algorithm> using namespace std; bool cmp(int a,int b){ return a>b; } int main(){ int n;...
P1348
百鸡问题 题解:
snake
VIP
发表于 15天前
回复 0
|
赞 0
|
浏览 137
#include <stdio.h> int main(){ int n; while(scanf("%d",&n)!=EOF){ for(int i=0;i<=100;i++){ ...
P1122
欢迎来到NoobDream 题解:
帅就一个字
发表于 17天前
回复 0
|
赞 0
|
浏览 161
#include <stdio.h> int main() { printf("Welcome to NoobDream!\n"); return 0; }
P1131
输出倒三角图案 题解:
柠檬片
发表于 18天前
回复 0
|
赞 0
|
浏览 137
#include <stdio.h> int main() { for(int i=0;i<4;i++) { for(int j=0;j<i;j++) printf(" "); ...
P1256
拦截导弹 题解:
柠檬片
发表于 18天前
回复 0
|
赞 0
|
浏览 134
#include<bits/stdc++.h> using namespace std; const int N=1010; int n; int a[N],f[N],g[N]; int main(){ int idx=1; wh...
站内公告
N诺成就值出炉,帮你一眼识别大神
admin
SVIP
发表于 3年前
在23天前回复
回复 62
|
赞 51
|
浏览 58.1k
如何一眼识别大神? 不同成就值的N诺er们名字颜色是不一样的!将按照颜色从高到低排序~ 为了更科学,我们根据用户数、成就值、本周活跃用户数等值按照泊松分布调整了等级比例,大家可以从名字颜色&称号知道自己目前的等级啦~ Lv....
P1037
计算函数 题解:
snake
VIP
发表于 23天前
回复 0
|
赞 0
|
浏览 129
#include "stdio.h" int main() { int x,y; scanf("%d",&x); if(x <1) { y=x; printf("%d",y); } else if(x <10) { y=2*x-1...
P1393
矩阵转置 题解:
lenny
VIP
发表于 4个月前
在25天前回复
回复 1
|
赞 0
|
浏览 461
这题只需要用到swap()函数即可,输入矩阵之后直接使用swap()函数进行交换即可,最后注意输出结果 #include <bits/stdc++.h> using namespace std; const int N = 1000; int main() { ...
P1810
求众数 题解:
柠檬片
发表于 29天前
回复 0
|
赞 0
|
浏览 191
#include <bits/stdc++.h> int main(){ int n[100]; int m;//输入的次数 scanf("%d",&m); int i=0; while(i<m){ scanf("%d", &...
P1001
(直接bitset格式化输出一行解决
Hhhhhq
发表于 3年前
在1个月前回复
回复 5
|
赞 5
|
浏览 12.5k
就是个输出0-64的二进制,直接调bitset一行解决(他不香嘛 #include<cstdio> #include<iostream> #include<bitset> using namespace std; int main(){ &n...
P1292
字母统计 题解:
Apricityxx
发表于 1个月前
回复 0
|
赞 0
|
浏览 222
using namespace std; int main(){ int ans[30]={0}; string x; while(cin>>x){ &n...
P1703
最大子串和 题解:
柠檬片
发表于 1个月前
回复 0
|
赞 0
|
浏览 233
#include<bits/stdc++.h> using namespace std; const int maxn=110; int a[maxn]; int dp[maxn],ansp,ansq,ans; void DP(int n) { int...
P1084
陶陶摘苹果 题解:
Pure
发表于 1个月前
回复 0
|
赞 1
|
浏览 222
#include <stdio.h> #include <stdlib.h> int main() { int appleh[10], benchh, taoh, bentaoh, i; benchh = 30; //板凳的高度 ...
我要提问
共同体里的数组
Lobji
发表于 1个月前
回复 1
|
赞 0
|
浏览 249
大佬们这是什么意思这个程序里的这个数组U[2]。 #include<stdio.h> union utype{ int i; float f; }U[2]; ...
P1722
身份证校验 题解:
Apricityxx
发表于 1个月前
回复 0
|
赞 1
|
浏览 317
// // 身份证校验.cpp // Algorithm // // Created by Apricity on 2023/10/26. /*身份证号的校验身份证号码共18位,最后一位是校验位。A[18] : aaaaaabb...
P1012
字符移动 题解:
Apricityxx
发表于 1个月前
回复 0
|
赞 1
|
浏览 233
// // 字符移动.cpp // Algorithm // // Created by Apricity on 2023/10/25. // #include<iostream> #...
P1493
连续合数段 题解:
Pure
发表于 1个月前
回复 0
|
赞 1
|
浏览 273
#include<bits/stdc++.h> int a[1000005]; int count1 = 0; int maxn = 1, tag = 0; //判断合数 bool judge(int n) { for (int i = 2; i &...
P1259
进制转换2 题解:
黄东龙
VIP
发表于 1个月前
回复 0
|
赞 0
|
浏览 273
考研北大第67天 离散课前答题 #include<iostream> #include<stdio.h> #include<string.h> using namespace std; int num16to1...
P1454
反序数 题解:
黄东龙
VIP
发表于 1个月前
回复 0
|
赞 1
|
浏览 460
//冲击北大的第60天 #include<iostream> #include<stdio.h> #include<string.h> #include<algorithm> #include<stack> ...
P1054
塑身菜单 题解:
Pure
发表于 1个月前
回复 0
|
赞 0
|
浏览 382
#include <iostream> using namespace std; int main() { int i,s=0,k; struct menu { char name[100]; int hot; }a[15]={ {...
学习交流
一道关于图的度的选择题
LukeSu
发表于 1个月前
回复 2
|
赞 1
|
浏览 389
D项哪里错了呢?顶点的度比就是它的入度+出度么?
P1285
最小面积子矩阵 题解:
快乐小土狗
发表于 1个月前
回复 0
|
赞 0
|
浏览 272
可以利用尺取法解决这个问题 #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> #define MAX 102 int ...
综合
2024年专业课改考信息汇总 -- 持续更新中
admin
SVIP
发表于 7个月前
在1个月前回复
回复 2
|
赞 7
|
浏览 7.2k
福建工程学院 为进一步做好学科及研究生培养工作,经福建工程学院计算机科学与数学学院党政联席会议研究,我院拟对2024年“计算机技术”专业硕士研究生招生考试初试科目进行如下调整: 原“数据结构和C语言程序设计”更改为“4...
P1181
中位数 题解:
黄东龙
VIP
发表于 2个月前
回复 0
|
赞 0
|
浏览 288
简单题只需要使用简单排序加上求取中位数就可以做到直接下标访问中位数 唯一考虑:奇数长和偶数长的中位数切入点不一样 #include<iostream> #include<stdio.h> #include<string.h>...
1
2
3
...
186
我要提问
近期热门
1
N诺成就值出炉,帮你一眼识别大神
2
机试如何才能快速提高?
3
[置顶]2023计算机考研择校分析【23考研必读】
4
广度优先搜索计算每个人移动到每个位置需要去掉障碍物的最少数目,最后求和的最小值
5
C++递归解法,有注释
6
1377旋转矩阵
7
ip地址(C)
8
计算机考研复试笔记——操作系统篇
9
抽奖~ Round #1
10
无法正确通过题目都是哪些原因造成的?