上一页 1 2 3 4 5 6 7 8 9 ··· 22 下一页
摘要: 数据总线宽度为16位 地址总线宽度位20位 最大可寻找空间为1MB 具有多级中断、多种寻址方式、段式寄存器 采用流水线结构,设置了指令预取队列 阅读全文
posted @ 2022-02-27 08:28 jason2018 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 逻辑门 器件 与门 74LS08 或门 74LS32 非门 74LS04 异或门 74LS86 与非门 74LS00 或非门 74LS28 三态门 74LS125 阅读全文
posted @ 2022-02-26 13:53 jason2018 阅读(7703) 评论(0) 推荐(0) 编辑
摘要: 一级标题 插件 Markdown All in One One Dark Pro Paste Image Markdown Preview Enhannced markdownlint 正文 这里是正文 加一个空行表示分段 强调 斜体 斜体 使用Ctrl+i快捷键标注斜体 粗体 粗体 使用Ctrl+ 阅读全文
posted @ 2022-02-16 14:14 jason2018 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 不知不觉,已经有一年多没有来这个博客了,我写的知识分享属于很简单的内容,也有些网友给我留言,觉得有用。 今天开始继续记录。。。 阅读全文
posted @ 2021-11-12 15:56 jason2018 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 struct stud_node { 5 int num; 6 char name[20]; 7 int score; 8 struct stud_node* next; 9 }; 10 11 struct 阅读全文
posted @ 2020-07-18 16:28 jason2018 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <string.h> 3 int main(void) 4 { 5 char s[4][19]; 6 int len; 7 8 for (int i = 0; i < 4; i++) 9 { 10 scanf("%s", s[i]); 阅读全文
posted @ 2020-07-13 20:17 jason2018 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #define MAXS 30 3 4 char *search(char *s, char *t); 5 void ReadString( char s[] ); /* 裁判提供,细节不表 */ 6 7 int main() 8 { 9 char s[ 阅读全文
posted @ 2020-07-13 19:15 jason2018 阅读(229) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 3 #define MAXS 10 4 5 char* match(char* s, char ch1, char ch2); 6 7 int main() 8 { 9 char str[MAXS], ch_start, ch_end, * p; 10 阅读全文
posted @ 2020-07-13 18:56 jason2018 阅读(565) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 5 typedef struct node 6 { 7 char name[11]; 8 char birthday[9]; 9 char phone[18]; 10 阅读全文
posted @ 2020-07-09 19:39 jason2018 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 3 int main(void) 4 { 5 int n, i, j, length, k, m; 6 char array[10][10]; 7 int x1, y1, x2, y2; 8 int isError = 0; 9 int isRight 阅读全文
posted @ 2020-06-18 15:53 jason2018 阅读(252) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 22 下一页