11 2021 档案

摘要:将开发过程中较好的内容做个收藏,下边代码内容是关于C语言基础:文件拷贝的代码。 #include <stdio.h> int main(void) { int letter; if ((input = fopen("\CONFIG.SYS", "r")) == NULL) printf("Error 阅读全文
posted @ 2021-11-26 00:06 lpyg 阅读(204) 评论(0) 推荐(0)
摘要:下面资料是关于C语言基础:goto语句用法演示的内容,希望能对各位有所帮助。 #include <stdio.h> int main() { int count = 1; label: printf("%d ", count++); if (count <= 100) goto label; ret 阅读全文
posted @ 2021-11-25 23:51 lpyg 阅读(148) 评论(0) 推荐(0)
摘要:将代码过程中经常用的一些代码片段收藏起来,如下的代码段是关于C#创建缩略图的操作类的代码,应该对小伙伴有一些用。using System;using System.Collections.Generic;using System.Drawing;using System.Drawing.Imagin 阅读全文
posted @ 2021-11-25 15:11 lpyg 阅读(61) 评论(0) 推荐(0)