码迷,mamicode.com
首页 >  
搜索关键字:student    ( 6827个结果
实验6 结构体
1. #include<stdio.h>#include<stdlib.h>#include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20 ...
分类:其他好文   时间:2021-06-11 18:20:49    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 4 typedef struct student { int id; /*学生学号 */ char name[20]; /*学生姓名 */ char subject[2 ...
分类:其他好文   时间:2021-06-11 18:15:08    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student{ int id; char name[20]; char subject[20]; float perf; float ...
分类:其他好文   时间:2021-06-11 18:08:13    阅读次数:0
实验6
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; float perf; floa ...
分类:其他好文   时间:2021-06-11 18:04:10    阅读次数:0
实验6 Jacky's npy
1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 5 6 typedef struct student { 7 int id; /*学生学号 */ ...
分类:其他好文   时间:2021-06-10 18:35:13    阅读次数:0
反射文件配置
package com.oracler.demo02; public class Student { public void study(){ System.out.println("学生学习"); } } package com.oracler.demo02; import java.io.Fil ...
分类:其他好文   时间:2021-06-10 18:28:27    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-10 18:07:14    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-10 18:03:42    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 2 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-10 17:57:57    阅读次数:0
实验六
实验任务一: #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char n ...
分类:其他好文   时间:2021-06-08 23:29:04    阅读次数:0
6827条   上一页 1 2 3 4 5 ... 683 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!