程序设计基础-2022级 (南京信息工程大学)

  • 班级所有博文发布时间分布(24小时制):
  • 实验6

    #include<stdio.h> #include<stdlib.h> int main() { char a[2][100]={"nuist2022-nuist2023","FIFA World Cup 2022"}; FILE *fp; int i,n=0; char ch; fp=fopen
    理塘最速传说顶针   2023-01-01 13:28   0   105
  • 实验5

    #include <stdio.h> #include<stdlib.h> #include <string.h> #define N 5 typedef struct student { char name[10]; int num; int maths; int computer; int en
    理塘最速传说顶针   2023-01-01 13:26   0   53
  • 实验六

    任务4 #include<stdio.h> #include<stdlib.h> int main(){ FILE *fp; int count=0; fp=fopen("data4.txt","r"); if(fp==NULL){ printf("fail to open the file");
    疙瘩宝   2022-12-30 15:11   0   45
  • 实验6 文件应用编程

    实验任务4 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> int main() { char ch; int count = 0; FILE* fp; fp = fopen("data4.txt", "r")
    林佑臻   2022-12-30 01:04   0   23
  • 实验5 结构体应用编程

    实验任务3 #include <stdio.h> #include<string.h> #include<stdlib.h> #define N 100 typedef struct { char num[10]; // 学号 int s1; // 期末成绩 int s2; // 平时成绩 doub
    林佑臻   2022-12-30 00:04   0   15
  • 实验6

    #include<stdio.h> #include<stdlib.h> int main() { char a[2][100]={"nuist2022-nuist2023","FIFA World Cup 2022"}; FILE *fp; int i,n=0; char ch; fp=fopen
    王涵钰   2022-12-29 22:58   0   16
  • 实验5

    #include <stdio.h> #include<stdlib.h> #include <string.h> #define N 5 typedef struct student { char name[10]; int num; int maths; int computer; int en
    王涵钰   2022-12-29 22:57   0   14
  • 作业6

    #define _CRT_SECURE_NO_WARNINGS #include<stdlib.h> #include<stdio.h> int main() { char ch; int count = 0; FILE* fp; fp = fopen("data4.txt", "r"); if (
    素商折木   2022-12-29 21:31   0   18
  • 6

    #include <stdio.h> #include <string.h> #include <stdlib.h> int main(){ FILE *fp; fp=fopen("data4.txt","r"); char ch='a'; int i=0; do { ch=fgetc(fp); i
    李治伯   2022-12-29 20:13   0   138
  • 5

    #include <stdio.h>#include <string.h>#define N 3 // 运行程序输入测试时,可以把这个数组改小一些输入测试 typedef struct student {int id; // 学号char name[20]; // 姓名char subject[20
    李治伯   2022-12-29 20:10   0   138