摘要:
main函数 #include<stdio.h> #include<stdlib.h> #include<conio.h> #include<windows.h> #include"box_1.h" #include<graphics.h> IMAGE images[7];//存储6个图片,用图形库 阅读全文
2020年11月19日
2020年11月13日
摘要:
main.c 1 //纯C语言贪吃蛇 2 #define _CRT_SECURE_NO_WARNINGS 3 #include"snake.h" 4 #include<stdio.h> 5 int main() 6 { 7 //去除光标 8 CONSOLE_CURSOR_INFO test1; 9 阅读全文
2020年11月10日
摘要:
文件操作下 各种printf对比记忆 printf--sprintf--fprintf 都是变参函数:参数形参中有"...",最后一个固参通常是格式描述串(包含格式匹配符),函数的参数个数、类型、顺序都由固参来决定。 printf对应的是屏幕输出 printf("hello"); printf("% 阅读全文
摘要:
复制文件 1 //任意文件复制demo 2 3 #define _CRT_SECURE_NO_WARNINGS 4 #include<stdio.h> 5 #include<stdlib.h> 6 #include<string.h> 7 #include<time.h> 8 9 void inpu 阅读全文
2020年11月2日
摘要:
读写文件操作与普通的printf、scanf 代码操作平台功能 printf 屏幕 标准输出 scanf 键盘 标准输入 perror 屏幕 标准输出错误 系统文件 功能代码宏定义 标准输入 stdin 0 标准输出 stdout 1 标准错误 stderr 2 系统文件在应用程序执行时会自动打开, 阅读全文
摘要:
//文件版的四则运算 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #include<string.h> //进行文件四则运算的写入 void write_file() { FILE* fp = NULL; 阅读全文
摘要:
1 //按行读写文件 2 #define _CRT_SECURE_NO_WARNINGS 3 #include<stdio.h> 4 #include<stdlib.h> 5 #include<string.h> 6 7 //获取键盘输入,写入文件 8 void Get_stdin_Write_Fi 阅读全文
摘要:
1 //文件的打开和关闭 2 #define _CRT_SECURE_NO_WARNINGS 3 #include<stdio.h> 4 #include<stdlib.h> 5 #include<string.h> 6 int Only_Read_file(FILE* fp) 7 { 8 //以只 阅读全文
摘要:
//c++实现雅克比迭代式 #include<iostream> #include<iomanip> #include<string> #include<vector> using namespace std; //函数求数组中的最大值 double MaxOfList(vector<double> 阅读全文
摘要:
采用的是vs2019IDE来处理 1 //按字符读写文件 2 3 #define _CRT_SECURE_NO_WARNINGS 4 #include<stdio.h> 5 #include<stdlib.h> 6 #include<string.h> 7 //按单个字符写文件 8 int Writ 阅读全文