// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:
其他好文 时间:
2020-01-01 09:24:49
阅读次数:
62
// 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt ...
分类:
其他好文 时间:
2019-12-30 00:22:18
阅读次数:
61
#include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file1.txt", "r"); // 以只读文本方式打开文件file1.txt if (f ...
分类:
其他好文 时间:
2019-12-29 15:22:43
阅读次数:
86
#include<stdio.h> #include<stdlib.h> int main() { FILE *fp; char ch; fp=fopen("file1.dat","rb"); while(!feof(fp)) { ch=fgetc(fp); putchar(ch); } fclos ...
分类:
其他好文 时间:
2019-12-29 15:17:34
阅读次数:
120
项目练习中遇到的问题记录: 1. 鼠标点击超链接时不显示小手掌:父元素绝对定位影响到了子元素 解决办法: .father{ z-index:998; } 2. object-fit CSS 属性指定可替换元素的内容应该如何适应到其使用的高度和宽度确定的框 3. 弹性盒布局中,弹性元素的 nth-ch ...
分类:
其他好文 时间:
2019-12-29 15:12:44
阅读次数:
102
Given a linked list, swap every two adjacent nodes and return its head. You may not modify the values in the list's nodes, only nodes itself may be ch ...
分类:
其他好文 时间:
2019-12-29 12:53:05
阅读次数:
85
1.1: // 将file1.txt中小写字母转换成大写后,另存为file2.txt #include <stdio.h> #include <stdlib.h> int main() { FILE *fin, *fout; // 定义文件类型指针 int ch; fin = fopen("file ...
分类:
其他好文 时间:
2019-12-28 23:11:10
阅读次数:
148
JSON简介 JSON:JavaScript Object Notation,JavaScript 对象表示法。 JSON 是存储和交换文本信息的语法,类似于XML。 JSON 比 XML 更小、更快,更易解析,前后端的通信现在一般用JSON,基本不用XML。 JSON对象 { "name":"ch ...
分类:
Web程序 时间:
2019-12-28 16:32:05
阅读次数:
85
1.8086的寄存器 内部寄存器8个:分为数据寄存器,地址寄存器,变址寄存器 其中数据寄存器4个:AX,BX,CX,DX,又可分为AH,BH,CH,DH和AL,BL,CL,DL。 AX称为累加寄存器,I/O指令均使用该寄存器,访问外部硬件和接口。 BX称为基址寄存器,访问内存时用于存放基址 CX称为 ...
分类:
其他好文 时间:
2019-12-27 23:27:38
阅读次数:
78
引言:java中构建树形节点时,数据量小的话,可以随便些 ,不影响,但是当数据量大了以后,一棵大大的树,要半天才出来,所以就想着优化一下. 树形节点数据构建: package me.zhengjie; import ch.qos.logback.classic.joran.action.RootLo ...
分类:
编程语言 时间:
2019-12-27 00:12:12
阅读次数:
172