摘要: 第十周作业 本周作业头 |这次作业属于哪个课程 | C语言程序设计ll | | | : | | 这个作业要求在哪里 | https://edu.cnblogs.com/campus/zswxy/software engineering class1 2018/homework/3163| | 我在这 阅读全文
posted @ 2019-05-03 13:53 AboutChristopher 阅读(181) 评论(1) 推荐(0) 编辑
摘要: 本周作业头 |这次作业属于哪个课程 | C语言程序设计ll | | | : | | 这个作业要求在哪里 | https://edu.cnblogs.com/campus/zswxy/software engineering class1 2018/homework/3125| | 我在这个课程的目标 阅读全文
posted @ 2019-04-26 17:13 AboutChristopher 阅读(328) 评论(0) 推荐(0) 编辑
摘要: 本周作业头 |这次作业属于哪个课程 | C语言程序设计ll | | | : | | 这个作业要求在哪里 | https://edu.cnblogs.com/campus/zswxy/software engineering class1 2018/homework/3076| | 我在这个课程的目标 阅读全文
posted @ 2019-04-17 20:11 AboutChristopher 阅读(303) 评论(1) 推荐(0) 编辑
摘要: |这次作业属于哪个课程 | C语言程序设计ll | | | : | | 这个作业要求在哪里 | https://edu.cnblogs.com/campus/zswxy/software engineering class1 2018/homework/2936| | 我在这个课程的目标是 | 将指 阅读全文
posted @ 2019-04-12 18:34 AboutChristopher 阅读(169) 评论(0) 推荐(0) 编辑
摘要: |这次作业属于哪个课程 | C语言程序设计ll | | | : | | 这个作业要求在哪里 |https://edu.cnblogs.com/campus/zswxy/software-engineering-class1-2018/homework/2889| | 我在这个课程的目标是 | 熟练使 阅读全文
posted @ 2019-04-05 13:21 AboutChristopher 阅读(284) 评论(1) 推荐(0) 编辑
摘要: |这次作业属于哪个课程 | C语言程序设计ll | | | : | | 这个作业要求在哪里 | https://edu.cnblogs.com/campus/zswxy/software engineering class1 2018/homework/2825| | 我在这个课程的目标是 | 复习 阅读全文
posted @ 2019-03-29 14:26 AboutChristopher 阅读(187) 评论(1) 推荐(0) 编辑
摘要: |这次作业属于哪个课程 | C语言程序设计ll | | | : | | 这个作业要求在哪里 | https://edu.cnblogs.com/campus/zswxy/software engineering class1 2018/homework/2775| | 我在这个课程的目标是 | 学习 阅读全文
posted @ 2019-03-22 20:29 AboutChristopher 阅读(198) 评论(1) 推荐(0) 编辑
摘要: 一、本周完成的作业 基础作业 给定一个整数数组(包含正负数),找到一个具有最大和的子数组,返回其最大的子数组的和,例如:[1, 2, 3, 10, 4, 7, 2, 5]的最大子数组为[3, 10, 4, 7, 2] 输入格式: 请建立以自己英文名字命名的txt文件,并输入数组元素数值,元素值之间用 阅读全文
posted @ 2019-03-15 17:10 AboutChristopher 阅读(210) 评论(1) 推荐(0) 编辑
摘要: 一、本周完成的作业 ========== 基础作业 请在第一周作业的基础上,继续完成:找出给定的文件中数组的最大值及其对应的最小下标(下标从0开始)。并将最大值和对应的最小下标数值写入文件。 输入格式: 请建立以自己英文名字命名的txt文件,并输入数组元素数值,元素值之间用逗号分隔。 输出格式: 在 阅读全文
posted @ 2019-03-09 19:25 AboutChristopher 阅读(200) 评论(1) 推荐(0) 编辑
摘要: 求最大值及其下标 ========== 本题要求编写程序,找出给定的n个数中的最大值及其对应的最小下标(下标从0开始)。 输入格式: 输入在第一行中给出一个正整数n(1 int main (void) { int i,index,N; int a[10]; scanf("%d",&N); for(i 阅读全文
posted @ 2019-03-03 14:24 AboutChristopher 阅读(198) 评论(0) 推荐(0) 编辑