摘要:
20231213 2024-2025-2 《Python程序设计》实验一报告 课程:《Python程序设计》 班级: 2312 姓名: 蔡明辉 学号:20231213 实验教师:王志强 实验日期:2025年3月12日 必修/选修: 公选课 1.实验内容 1.熟悉Python开发环境; 2.练习Pyt 阅读全文
摘要:
% 操作符 >>> name = "lumiere" >>> age = 21 >>> print("My name is %s and I am %d years old." % (name, age)) My name is lumiere and I am 21 years old. '%[- 阅读全文
摘要:
设计过程见C语言学生基本信息管理系统设计过程 头文件 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <conio.h> #include <windows.h> #include <stdbool.h> #in 阅读全文
摘要:
学生基本信息管理系统 题目 (1)任务描述 为某学校学生管理部门日常管理学生基本信息,设计一个信息管理系统。 某学校学生管理部门在新生入学时,会登记每个学生的个人基本信息,以便今后提供给教务处、学生所在系部、毕业工作指导委员会等部门使用。 (2)功能要求 ① 根据自己初次入学时填写的学生信息基本情况 阅读全文