t
  • 2024-07-24求解!do...while 语句嵌套switch语句为何会出现死循环?
    这是我写的一段实现通讯录的代码voidmenu(){ printf("**************************************\n"); printf("*******1.Add2.Del*****\n"); printf("*******3.Search4.Modify*****\n"); printf("*******5.Show
  • 2024-07-23C语言课程设计:图书管理系统【源码+文档】
    【文章序言】:很高兴你能来阅读,博客分享日常编程,希望自己向着优秀程序员前行!博客来源于项目以及编程中遇到的问题总结,偶尔会有读书分享,我会陆续更新Java前端、后台、数据库、项目案例等相关知识点总结,感谢你的阅读和关注,希望我的博客能帮助到更多的人,分享获取新知,大家一起
  • 2024-07-19【C语言】实现一个通讯录,一步一步详细讲解,小白也能看!!!
    目录设计思路代码实现 代码仓库 设计思路1.通讯录存放的信息这个通讯录保存的信息包括:名字,年龄,性别,电话,住址。2.通讯录的功能1.通讯录可以存放100个人的信息。2.增加联系人3.删除联系人4.修改联系人5.查询联系人6.显示所有人3.文件规划我们准
  • 2024-07-16用结构体实现一个简单的学生管理系统
    使用结构体完成学生(学号、姓名、性别、成绩)管理系统1.使用菜单实现2.功能1:完成对学生信息的录入,确定人数,完成输入3.功能2:完成对学生信息的输出4.功能3:输出成绩最高和最低学生的信息5.功能4:输出学生的总成绩和平均成绩6.功能5:对学生信息按成绩进行排序,根据传
  • 2024-07-13测试(快速幂+数学)
    洛谷P1630求和 第1题   测试 查看测评数据信息给一个式子,求它的值,(1^b+2^b+...+a^b)%1e4输入格式 第一行一个数t,表示有t组测试数据对于每组测试数据,一行有两个整数a,b部分数据:1<=t<=10,a,b<=1e3对于100%的数据,1<=t<=100,1<=a,b<=1e9 输出格式 
  • 2024-06-24实验7
    task4#include<stdio.h>intmain(){FILE*fp;charch;intcount=0;fp=fopen("d:\\data4.txt","r");if(fp==NULL){printf("failtoopenfile\n");return0;}while(!feof(fp)){
  • 2024-06-24实验7
    1.#include<stdio.h>#include<stdlib.h>intmain(){intch=0;inta=0;FILE*fp;fp=fopen("data4.txt","r");if(fp==NULL){printf("failtoopen\n");return1;}whil
  • 2024-06-24第七次实验
    1#include<stdio.h>2#include<stdlib.h>3intmain()4{5intch=0;6inta=0;7FILEfp;89fp=fopen("data4.txt","r");1011if(fp==NULL){12printf("failtoopen\n");13r
  • 2024-06-24实验七
    4.task.4#include<stdio.h>intmain(){FILE*fp;charch;intcount=0;fp=fopen("d:\\data4.txt","r");if(fp==NULL){printf("failtoopenfile\n");return0;}while(!feof(fp))
  • 2024-06-24实验7
    1#include<stdio.h>2#include<stdlib.h>3intmain()4{5intch=0;6inta=0;7FILE*fp;89fp=fopen("data4.txt","r");1011if(fp==NULL){12printf("failtoopen\n");
  • 2024-06-23实验七
    task4#include<stdio.h>intmain(){intcnt=0;charch;FILE*fp;fp=fopen("data4.txt","r");if(fp==NULL){printf("failtoopenfile\n");return;}while((ch=fgetc(f
  • 2024-06-23实验7
    task4#include<stdio.h>intmain(){intcount;charch;FILE*fp;fp=fopen("data4.txt","r");if(fp==NULL){printf("failtoopenfile\n");return1;}count=0;wh
  • 2024-06-22实验七
    task41#include<stdio.h>2intmain()3{4inti,count=0;5intc;6FILE*fp;7fp=fopen("C://Users//Dell//Desktop//data4.txt","r");8if(fp==NULL)9{10printf("failtoopenfil
  • 2024-06-21实验七
    #include<stdio.h>intmain(){ charch; intc=0; FILE*fp; fp=fopen("data4.txt","r"); while(!feof(fp)) { ch=fgetc(fp); if(ch==EOF) break; if(ch!=''&&ch!='\n'&&ch!
  • 2024-06-21实验7_文件应用编程
    #include<stdio.h>#include<string.h>#include<stdlib.h>intmain(){ intcnt=0; charc; FILE*fp; fp=fopen("data4.txt","r"); while(!feof(fp)) { c=fgetc(fp); if(c=='\n'||c==''||c==�
  • 2024-06-21实验7 文件应用编程
    task.4 #include<stdio.h>intmain(){FILE*fp;charch;intcount=0;fp=fopen("data4.txt","r");if(fp==NULL){printf("failtoopenfile\n");return;}while((ch=fg
  • 2024-06-21实验七
    task4#include<stdio.h>#include<ctype.h>intmain(){charfilename[100];FILE*file;intch;intcount=0;printf("请输入要统计字符数的文件名:");scanf("%s",filename);file=fopen(filename,"
  • 2024-06-20实验七
    点击查看代码#include<stdio.h>intmain(){intcount=0;intch;FILE*fp;fp=fopen("data4.txt","r");if(fp==NULL){printf("failtoopenfile\n");return1;}while((
  • 2024-06-18实验7
    点击查看代码#include<stdio.h>intmain(){intcount=0;intch;FILE*fp;fp=fopen("data4.txt","r");if(fp==NULL){printf("failtoopenfile\n");return1;}while((
  • 2024-06-18实验七
    Task41#include<stdio.h>23intmain(){4intnum=0;5charch;67FILE*fp;89fp=fopen("data4.txt","r");1011if(fp==NULL){12printf("failtoopenfile\n&
  • 2024-06-17实验7 文件应用编程
    task4.c1#include<stdio.h>2intmain()3{4FILE*fp;5charch;6intcount=0;7fp=fopen("data4.txt","r");8if(fp==NULL)9{10printf("failtoopenfile\n");11
  • 2024-06-17实验7
    task4#include<stdio.h>intmain(){FILE*fp;intcount;count=0;charch;fp=fopen("data4.txt","r");if(fp==NULL){printf("failtoopenfail\n");return1;}
  • 2024-06-17实验七
    task4.c#include<stdio.h>intmain(){intcount;charch;FILE*fp;fp=fopen("data4.txt","r");if(fp==NULL){printf("failtoopenfile\n");return1;}count=0;w
  • 2024-06-15goaccess分析nginx日志详解
    goaccess version:1.9安装方式:源文件makemakeinstall 执行环境:cli完整access.log:192.168.1.3:16423|240e:42c:1b30:111:b4c1:49ff:fe49:392c,113.96.59.2114/Jun/2024:00:01:15+0800HTTP/1.0GEThttp://www.baidu.com/yl/ysj/dsj/folder1088/?imageView/
  • 2024-03-103.10
    昨天放假回去得知我对象给我买了一个重云的吧唧,真的好可爱啊