首页 > TAG信息列表 > xuehao

Python课设:作业统计管理系统,源码+实验报告+论文需要自取

作业管理统计系统 Chapter One【需求分析】Chapter Two【总体设计】Chapter Three【详细设计】Chapter Four【课设总结】Chapter Five【课设感想】最后 Chapter One【需求分析】 1、问题 根据需求,该系统所应包含的信息有以下一些: 学生提交作业情况slsx: 学号,姓名,第一次作

简单java类

class Student {     private String name;     private int age;     private int xuehao;     public String getInfo(){         return " 姓名"+name+"\t"+"年龄"+age+"\t"+"学号"+xuehao;     }     public Student(){}  

2021-06-03

#include <vector> #include <stdio.h> #pragma warning(disable:4996) #include <stdio.h> #include <string.h> #include <stdlib.h> #include <math.h> void printList(struct xinxi* s, int m); struct xinxi* createList(int m); vo

大型数据库技术-实验五-游标的使用

大型数据库技术-实验五-游标 五、 实验内容及步骤 (1) 针对选课表定义一个只读游标,逐条输出有成绩的记录的学号,开课号,成绩(按成绩由高到低排序)。要求游标输出数据时不反应打开游标后对基本表的修改。执行结果如下图所示: DECLARE CUR1 INSENSITIVE CURSOR FOR SELECT * FROM db

初学面向对象

# 定义Student类 class Student: def __init__(self,name,xuehao,phone): # 初始化函数 self.name = name self.xuehao = xuehao self.phone = phone self.__password = '123' def