c语言_网络1913&&网络1914 (集美大学 - 计算机工程学院)

  • C语言文件

    C 语 言 文 件 一.代码 1. 主函数; 2. begin函数; 3. sever函数; 二.程序运行截图 1. 首页界面(begin函数) 2. 菜单页面(sever函数) 3. 添加学生信息(完成任务一与任务二) 4. 查询学生信息(完成任务三) 5. 退出程序 四. system()函数(
    羊腿桂鱼yu   2019-12-19 01:35   0   205
  • 博客作业(3)c 语言文件

    一.完整代码 #include<stdio.h> #include<stdlib.h> #include<string.h> struct fun{ char name[100]; char num[100]; char sex[100]; char cla[100]; int score; }ni
    Styoool(曾广芝)   2019-12-18 22:17   0   194
  • 第三次博客作业

    C语言文件 根据题目要求,我做出了一个可以储存并查询多个学生的相关数据的程序,数据包括一个学生的姓名、学号、性别、所在班级、现代成绩,还设计了一些可以让程序界面比较美观的UI界面,程序的最终效果如下图: 程序初始界面: 按任意键进入应用界面,输入1、2、3将分别转到相应的功能界面,如果输入4,则程序
    勤政   2019-12-17 21:36   0   219
  • 作业.01

    一.代码: #include<stdio.h>#include<stdlib.h>#include<string>struct student { char name[10]; int num; char sex[10]; char cla[10]; double score;}stu[10];in
    月光寰宇(白靖)   2019-12-17 20:39   0   322
  • c语言文件

    一.完整代码展示 #include <stdio.h> #include <stdlib.h> #include <string.h> struct stu { char name[20]; char num[50]; char sex[10]; char Class[10]; char score
    GGG(郭其松)   2019-12-17 18:20   0   474
  • C语言文件

    一、代码展示 #include<stdio.h> #include<stdlib.h> #include<string.h> struct students { //定义结构体 char name[20]; char num[15]; char sex[10]; char Class[10]; ch
    长安某•   2019-12-17 18:17   0   233
  • c语言文件

    一:代码及截图展示 1 #include<stdio.h> 2 #include<string.h> 3 #include<stdlib.h> 4 struct student{ //创建一个结构体来存储数据。 5 char num[20]; 6 char sex[3]; 7 char class1
    hhs(黄鸿森)   2019-12-17 17:14   1   380
  • C语言文件

    代码块: #include<stdio.h> #include<string.h> #include<stdlib.h> struct student_information { char name[10]; char student_ID[20]; char sex[10]; int score;
    漆靖   2019-12-17 15:52   0   196
  • C语言文件

    一、代码展示 #include<stdio.h> #include<stdlib.h> #include<string.h> struct student { char name[20]; int number; int clas; char gender[10]; char score[20];
    烟雨萧煜   2019-12-17 14:51   0   233
  • c语言文件

    一、代码展示 #include<stdio.h> #include<string.h> #include<conio.h> #include<stdlib.h> int n; FILE* fp; void welcome();//欢迎界面函数 void inputinformation();//录入
    望眼欲穿。   2019-12-17 14:09   0   263