码迷,mamicode.com
首页 >  
搜索关键字:student    ( 6827个结果
static关键字
package com.oop.demo05; /** * <p> * * </p> * * @author: wfs * @date: 2021/6/21 */ public class Student { private static int age;//静态的变量 多线程 private do ...
分类:其他好文   时间:2021-06-21 20:35:39    阅读次数:0
vvv
#include<stdio.h>#include<string.h>#include<stdlib.h>#include<windows.h>typedef struct student //定义结构体 { char name[20]; //姓名 char num[15]; //学号 char s ...
分类:其他好文   时间:2021-06-21 20:34:02    阅读次数:0
DI依赖注入
DI依赖注入 set方式注入【重点】 依赖注入:set注入 依赖:bean对象的创建依赖于容器 注入:bean对象中的所有属性,由容器来注入 【环境搭建】 1.真实测试对象 2.复杂类型 @Data public class Student { private String name; privat ...
分类:其他好文   时间:2021-06-18 19:53:42    阅读次数:0
条件查询
create table student ( ID int primary key identity(1,1), studentNo varchar(20) not null, name varchar(20) not null, address varchar(20) not null, year ...
分类:其他好文   时间:2021-06-18 19:42:42    阅读次数:0
实验7
#include <stdio.h> #include <stdlib.h> #define N 10 typedef struct student { int num; char name[20]; int score; }STU; int main() { FILE *fin; STU st[N ...
分类:其他好文   时间:2021-06-18 19:14:39    阅读次数:0
实验七
实验任务三 1.正确输出,且生成了file3.dat 2.是正确的,且直观可读 实验任务四 1.正确输出,生成了file4.dat,且用记事本打开直观可读 2. #include <stdio.h> #include <stdlib.h> typedef struct student{ int nu ...
分类:其他好文   时间:2021-06-17 16:34:46    阅读次数:0
实验7
3.文件 示例代码运行结果如下: 生成的file3.txt内容如下: 输出与生成文件的内容均完整可读。 4.二进制文件 (1)示例代码运行结果如下: 生成的file4.txt内容如下: 输出内容完整可读,而生成的文件显示为乱码,这是因为file4是用二进制方式写入的。 (2)代码如下: 1 #inc ...
分类:其他好文   时间:2021-06-13 09:54:48    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 10 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20 ...
分类:其他好文   时间:2021-06-11 18:28:53    阅读次数:0
实验六 结构体
#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:23:03    阅读次数:0
实验6
#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:22:43    阅读次数:0
6827条   上一页 1 2 3 4 ... 683 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!