摘要: #include <stdio.h> char score_to_grade(int score); // 函数声明 int main() { int score; char grade; while(scanf("%d", &score) != EOF) { grade = score_to_gr 阅读全文
posted @ 2026-04-22 09:45 王忠正 阅读(6) 评论(0) 推荐(0)
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <time.h> 4 #define N 5 5 int main() { 6 int number; 7 int i; 8 srand(time(0)); // 以当前系统时间作为随机种子 阅读全文
posted @ 2026-04-14 11:50 王忠正 阅读(7) 评论(0) 推荐(0)
摘要: 课程:《Python程序设计》 班级: 2434 姓名: 王忠正 学号:20243409 实验教师:王志强 实验日期:2026年3月23日 必修/选修: 公选课 1.实验内容 1.熟悉Python开发环境; 介绍Python开发环境的各项功能。 2.练习Python运行、调试技能; 编写书中的程序, 阅读全文
posted @ 2026-04-14 11:18 王忠正 阅读(4) 评论(0) 推荐(0)