-
算法第一章作业
类与文件名规范 类名命名做到每个单词的首字母大写 类名与文件名保持一致,符合 Java 的命名要求 变量与方法命名 变量和方法名采用驼峰命名法,第一个单词小写,后续单词首字母大写,如totalThrows、oddHits 命名具有描述性,见名知意,避免使用无意义的缩写 代码格式与缩进 使用 4 个空 -
软件技术基础作业1
这个作业属于哪个课程 https://edu.cnblogs.com/campus/zjlg/25rjjc 这个作业的目标 进行自我介绍,锻炼发表博客的技能 姓名-学号 毛佳睿-2023329301078 我叫毛佳睿,在当今科技大兴盛的时代,我对科技创新很感兴趣。机器人技术,自动控制技术以及ai技术 -
博客地址
https://www.cnblogs.com/yahuao -
实验1 现代c++编程初体验
实验1 : 1 #include<iostream> 2 #include<string> 3 #include<vector> 4 #include<algorithm> 5 6 //模板函数声明 7 template<typename T> 8 void output(const T &c); -
算法第一章作业
以下是我结合deepseek和个人理解所写的大学期间项目编码规范指南 核心原则 代码是写给人看的 命名要见名知意(studentList 而非 list1) 保持函数短小专注(一个函数只做一件事) 删除无用注释,保留“为什么这么做”的注释 早重构,常重构 发现重复代码立即提取成函数 保持代码结构清晰 -
https://www.cnblogs.com/jjiaher/p/19129529
这个作业属于哪个课程 https://edu.cnblogs.com/campus/zjlg/25rjjc 这个作业的目标 学会使用博客,自我介绍及初步评价 姓名-学号 金家禾-2023329301110 一、自我介绍 大家好,我叫金家禾,来自浙江温州,兴趣爱好是玩游戏、听音乐、看小说,比较喜欢看刑 -
实验任务1——8
实验1 #include <stdio.h>int main(){ printf(" O\n"); printf("<H>\n"); printf("I I"); return 0;} #include <stdio.h>int main(){ printf(" O\t O\n"); printf( -
实验二
程序1 1 #define _CRT_SECURE_NO_WARNINGS 2 #include <stdio.h> 3 #include <stdlib.h> 4 #include <time.h> 5 #define N 5 6 #define N1 80 7 #define N2 35 8 i -
高级语言程序设计第一次作业
这个作业属于的课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500333 姓名:陈俊荣 安装环境的过程和安装成功后界 -
高级语言程序第一次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500332 姓名:郑雷 1.成功安装编译环境结 -
高级语言程序设计第一次作业
班级链接:https://edu.cnblogs.com/campus/fzu/gjyycx 作业要求链接:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500324 姓名:卢龙腾 一.安装C程序编译环境 1.1安装De -
高级语言程序设计第一次作业
这个作业属于的课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/13558 学号:102500310 姓名:刘昕骁 一、安装C程序的编译环境 1 -
实验2
1、实验任务1 问题1:以当前系统时间为种子,生成一个随机数 问题2:随机生成一个学号 2、实验任务2 问题1:如果去掉,总价格不会清零,会积累到下一次购买价格中 问题2:跳过循环中continue之后的代码,进入下一循环 3、实验任务3 点击查看代码 #include<stdio.h> int m -
实验2
任务一 点击查看代码 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main(){ int cnt; int random_major,rand -
实验2
#include <stdio.h> #include<stdlib.h> #include<time.h> #define N 5 #define N1 80 #define N2 35 int main(){ int cnt; int random_major,random_no; srand( -
实验2
实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main(){ int cnt; int random_major,random_no -
实验2
实验任务1 1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 #define N1 80 7 #define N2 35 8 9 int main() 10 { 11 int cnt ; 12 -
实验2
task1 代码 1 #define _CRT_SECURE_NO_WARNINGS 2 #include <stdio.h> 3 #include <stdlib.h> 4 #include<time.h> 5 6 #define N 5 7 #define N1 80 8 #define N2 -
实验2
实验2的作业 实验任务1 问题一 srand(time(NULL)的作用是根据当前系统时间初始化随机数生成器,让每次程序运行时产生不同的随机数,从而避免重复。 问题二 随机抽取两个专业中的五个学号。 #include <stdio.h> #include <stdlib.h> #include <t -
实验2
任务1 1 #include <stdio.h> 2 #include<stdlib.h> 3 #include<time.h> 4 5 #define N 5 6 #define N1 80 7 #define N2 35 8 int main( ){ 9 int cnt; 10 int rand