- 博客(55)
- 资源 (22)
- 收藏
- 关注

原创 微机原理知识点
1 微机基础知识 1. 微机的硬件结构 2. 微机系统的组成及其功能 3. 常用计数制及其转换 微机的性能指标、数制转换2 典型微处理器及其体系结构 1. 8086处理器的内部结构 2. 寄存器 3. 存储器和I/O端口 ALU EU BIU 通用寄存器 段寄存器 IP寄存器 标志寄存器 物理地址 段地址 偏移量 有效地址 存储容
2012-12-16 14:25:20
1258
原创 C语言 教程 01
例子 printf-hello#include "stdio.h"main(){ printf("Hello, world\n");}例子 prinf-常量#include "stdio.h"#include "conio.h"main(){ printf("%d\n",5); printf("%d\n",236); printf("...
2019-09-16 10:48:01
256
原创 C语言 教程 02
例子 printf输出三角形#include <stdio.h>#include <stdlib.h>int main(int argc, char *argv[]) { printf(" *\n"); printf(" ***\n"); printf(" *****\n"); printf(" **...
2019-09-16 10:34:09
354
原创 单片机知识点
知识点单片机概述 定义 发展 用途和应用领域单片机内部结构和部件 内部寄存器 R0-R7 PSW PC SPC51编程基础 常用头文件 访问绝对地址开关、键盘、显示接口 按键的识别 矩阵键盘识别 数码管显示 静态显示 动态显示中断 中断相关寄存器 IE IP 中断入口地址定时器/计...
2019-01-02 19:06:38
717
原创 单片机习题
单片机习题填空1. RAM表示_____________存储器,ROM表示_____________存储器。2. 单片机系统中识别行列式按键的方法有___________和___________。3. 使用宏来访问绝对地址,需要包含的头文件是___________。4. C语言中,最常用的输出信息的库函数是___________。选择1. 十六进制数...
2019-01-02 08:56:47
3776
原创 C语言习题
C语言习题填空1. 一个C源程序中一定要有一个_______函数。2. 在C语言中,变量在使用前一定要先_______3. 设定义int y, m=27;则进行运算y=m--;后,m的值为__________,y的值为________。4. 表达式3>5的值为________。5. C语言中,非零表示逻辑_________,零表示逻辑_____...
2019-01-02 08:55:48
4993
1
原创 C语言知识点(11)-未分类
其它未分类常用字符串函数字符串的 strlen() 和 strcat() 和strcmp() 和strcpy()的使用方法一定要记住。他们的参数都是地址。其中strcat()和strcmp()有两个参数。个别输入函数scanf 和 gets的数据:如果输入的是 good good study!那么scanf(“%s”,a); 只会接收 good. 考点:不可以接收空格。...
2018-12-14 11:24:35
205
转载 C语言知识点(8)-指针
指针指针变量的本质是用来放地址,而一般的变量是放数值的。 int *p 中 *p和p的差别:简单说*p是数值,p是地址!*p可以当做变量来用;*的作用是取后面地址p里面的数值 p是当作地址来使用。可以用在scanf函数中:scanf(“%d”,p); *p++ 和 (*p)++的之间的差别:改错题目中很重要!考试超级重点 *p++是 地址会变化。 ...
2018-12-14 11:17:26
227
原创 C语言知识点(7)-函数
函数函数:是具有一定功能的一个程序块,是C语言的基本组成单位。 函数不可以嵌套定义。但是可以嵌套调用。 函数名缺省返回值类型,默认为 int。 C语言由函数组成,但有且仅有一个main函数!是程序运行的开始! 如何判断a是否为质数:背诵这个程序!void iszhishu( int a ){ for(i=2;i<a/2;i++) if(a%i==0) prin...
2018-12-14 11:12:20
562
原创 C语言知识点(6)-数组
数组数组: 存放的类型是一致的。多个数组元素的地址是连续的。1、一维数组的初始化:inta[5]={1,2,3,4,5}; 合法inta[5]={1,2,3, }; 合法inta[]={1,2,3,4,5}; 合法,常考,后面决定前面的大小!inta[5]={1,2,3,4,5,6};不合法,赋值的个数多余数组的个数了2、一维数组的定义;int a[5]...
2018-12-14 11:07:10
416
1
原创 C语言知识点(5)-循环结构
三种循环结构: a)for() ; while(); do- while()三种。 b)for循环当中必须是两个分号,千万不要忘记。 c)写程序的时候一定要注意,循环一定要有结束的条件,否则成了死循环。 d) do-while()循环的最后一个while();的分号一定不能够丢。(当心上机改错),do-while循环是至少执行一次循环。 break 和 ...
2018-12-14 11:03:23
346
原创 C语言知识点(4)-分支结构
算法与控制结构 流程图 顺序结构 分支结构if 语句 a、else 是与最接近的if且没有else的语句匹配。 b、交换的程序写法:t=x;x=y;y=t; c、if(a<b)t=a;a=b;b=t; if(a<b){t=a;a=b;b=t;}两个的区别,考试多次考到了! d、单独的if语句:if(a<b)t=a;...
2018-12-14 10:59:46
741
原创 C语言知识点(3)-运算符与表达式
运算符与表达式算数运算符算术:+,-,*,/,% 考试一定要注意:“/” 两边都是整型的话,结果就是一个整型。 3/2的结果就是1. “/” 如果有一边是小数,那么结果就是小数。 3/2.0的结果就是1.5 %符号两边要求是整数。不是整数就错了。赋值运算符赋值运算符:=赋值表达式:表达式数值是最左边的数值,a=b=5;该表达式为5,常量不可以赋值。赋值的左边只...
2018-12-14 10:53:53
1932
原创 C语言知识点(2)-输入和输出
printf用法printf(“ 普通字符串 ” );printf(“ 格式字符串 ”,变量列表);使用printf和scanf函数时,要在最前面加上#include“stdio.h”格式字符%d 整型 int %c 字符 char %ld 长整型 long int %s 字符串 %f 浮点型 float %o 八进制 ...
2018-11-23 11:24:22
836
1
原创 C语言知识点标题列表
C语言 知识点基本概念程序组成 程序结构 程序执行 语句数据类型与变量、常量 数据类型 基本字符 关键字 标识符 变量 常量输入和输出 printf scanf 其它输入输出语句运算符与表达式运算符 表达式 关系运算符 逻辑运算符 位运算分支结构分支结构 if语句 switch语句循环结构循环结构 for语句 whi...
2018-11-23 11:04:29
258
原创 C语言知识点(1)-概念、标识符、数据类型
C语言知识点-单元1基本概念C语言的源程序 用C语言的编译程序能识别的指令和语句写的文本程序,扩展名 .c。可以有注释。 程序的编译执行过程 源程序-> 目标文件, 目标文件 ->可执行程序。目标文件的扩展名 .obj,二进制机器码。可执行程序的扩展名.exe,链接好的二进制机器码,由用户编写的一段或多段目标文件和库文件链接生成。 源程序的构成 预处理命令、变量和函数...
2018-11-21 15:25:14
628
原创 csdn有用以及打算学习实践的技术和资源
java及前端 jar包http://download.youkuaiyun.com/album/detail/3748 http clienthttp://download.youkuaiyun.com/detail/h785193391/8902265 java kbhttp://lib.youkuaiyun.com/base/java/structure【资源优选】第五期
2017-06-28 18:02:54
258
原创 freemarker 使用教程笔记
下载freemarkerhttp://freemarker.sourceforge.net/freemarkerdownload.html项目文件:freemarker-2.3.19.tar.gz中文文档:FreeMarker_Manual_zh_CN.pdf解压后把freemarker.jar加到classpath中即可完成环境的配置定义模板文件我们创建两个模板文
2013-09-26 16:30:34
730
原创 使用Unix/Linux桌面系统推荐安装的程序
使用Unix/Linux桌面系统推荐安装的程序打算试用Unix/Linux的桌面,安装的FreeBSD9.1,整理一下安装的常用办公开发上网等程序。桌面:KDE 版本3.5.10浏览器:mozila mp3播放器: xmms zh-xmms视频播放器:mplayerPDF Reader : xpdf zh-xpdfAbiWord O
2013-09-22 23:30:16
849
原创 CVS的命令行使用
在修改网页时,就怕忘记修改了哪里。有了cvs,放心多了。熟记几个常用的命令:提交,取回,比较。part 11 repositorythis is a place to hold all you source code,and code change record.2 init when start to use cvs, must first
2013-09-20 11:41:28
1140
原创 fvwm 颜色集 和 环境变量
ColorsetColorset num [options]创建和修改颜色集合的数字,将来用这个数据来区分颜色。By convention, colorsets are numbered like this:# 0 = Default colors# 1 = Inactive windows# 2 = Active windows# 3 = In
2013-09-16 00:47:35
1125
原创 fvwm 模块命令
Module CommandsFvwm maintains a database of module configuration lines in a form*: where is either a real module name or an alias.This database is initially filled from config fil
2013-09-16 00:36:27
1086
原创 fvwm 条件命令
Conditional CommandsConditional commands are commands that are only executed if certain conditions are met. Most conditional commands work on windows, like Next, ThisWindow or All. There is one
2013-09-16 00:34:46
718
原创 fvwm 用户函数和系统脚本命令
User Functions and Shell Commands31.10.1. AddToFuncAddToFunc [name [ I | M | C | H | D action ]]Begins or adds to a function definition. Here is an example:AddToFunc Move-or-Ra
2013-09-16 00:33:50
786
原创 fvwm 控制虚拟桌面
Controlling the Virtual Desktop31.9.1. DeskDesk arg1 [arg2] [min max]This command has been renamed. Please see GotoDesk command.31.9.2. DesktopNameDesktopName desk name
2013-09-16 00:31:41
977
原创 fvwm 窗口样式
Window Styles31.8.1. AddButtonStyleAddButtonStyle button [state] [style] [-- [!]flag... ]Adds a button style to button. button can be a button number, or one of "All", "Left" or "Rig
2013-09-16 00:30:47
756
原创 fvwm 控制窗口样式
Controlling Window StylesFor readability, the commands in this section are not sorted alphabetically. The description of the Style command can be found at the end of this section.31.7.1. F
2013-09-16 00:29:53
1438
转载 fvwm 鼠标键盘鼠标滑动 命令绑定
Mouse, Key & Stroke Bindings31.6.1. IgnoreModifiersIgnoreModifiers [Modifiers]Tells fvwm which modifiers to ignore when matching Mouse or Key bindings. IgnoreModifiers affects the Cl
2013-09-16 00:28:07
941
原创 fvwm 焦点窗口和鼠标移动, 窗口状态
Focus & Mouse Movement31.4.1. CursorMoveCursorMove horizontal[p] vertical[p]Moves the mouse pointer by horizontal pages in the X direction and vertical pages in the Y direction. Eith
2013-09-16 00:26:56
1414
原创 fvwm 窗口移动和放置
31.3. Window Movement and Placement31.3.1. AnimatedMoveAnimatedMove x y [Warp]Move a window in an animated fashion. Similar to Move command. The options are the same, except they are
2013-09-16 00:23:47
1061
原创 fvwm 5
31.2.18. HilightColorHilightColor textcolor backgroundcolorThis command is obsoleted by the Style options HilightFore and HilightBack. Please useStyle * HilightFore textcolor, Hiligh
2013-09-16 00:23:25
609
原创 fvwm 4
31.2. Miscellaneous Commands31.2.1. BugOptsBugOpts [option [bool]],...This command controls several workarounds for bugs in third party programs. The individual options are separated
2013-09-16 00:20:34
734
原创 fvwm 3
ChangeMenuStyleChangeMenuStyle menustyle menu...Changes the menu style of menu to menustyle. You may specify more than one menu in each call of ChangeMenuStyle.31.1.10. CopyMenuStyle
2013-09-16 00:18:44
820
原创 fvwm使用 2
Scripting & Complex FunctionsTo achieve the more complex effects, fvwm has a number of commands that improve its scripting abilities. Scripts can be read from a file with Read, from the output o
2013-09-16 00:15:19
634
原创 fvwm使用 1
fvwm是一个X11的窗口管理器,提供虚拟窗口,提供多个桌面。提供键盘命令,控制窗口焦点。支持配置命令和动作命令。fvwm启动时读取配置文件,文件可以在多个位置,但是只有第一个找到的生效:$HOME/.fvwm/config/usr/local/share/fvwm/config$HOME/.fvwm/.fvwm2rc$HOME/.fvwm2rc/usr/local
2013-09-16 00:08:30
1106
KVIrc-5.2.0-Quasar-x86-64.exe
2024-02-02
foo_uie_lyrics3-0.5.zip
2020-03-25
个人博客建站软件serendipity
2013-10-08
fckeditor 2.6 带media插件
2011-03-08
Echo 3.0 漂亮的RIA框架
2009-06-14
LM2596芯片手册
2009-05-31
SQLite 数据库 v3.6.14 for Windows
2009-05-10
Electric Sheep 屏幕保护程序 v2.6.7
2009-05-10
colorful颜色截取小工具
2008-11-13
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人