2020年9月15日
摘要: | | | |: :|: :| | 这个作业属于哪个课程| 软件工程与实践 | |这个作业要求在哪里|https://edu.cnblogs.com/campus/zswxy/software0102/homework/11190 | |这个作业的目标|写一个学习计划| |学号|20188750| 阅读全文
posted @ 2020-09-15 11:38 -agl 阅读(94) 评论(0) 推荐(0) 编辑
  2020年9月8日
摘要: | | | |: :|: :| | 这个作业属于哪个课程| 软件工程与实践 | |这个作业要求在哪里| https://edu.cnblogs.com/campus/zswxy/software0102 | |这个作业的目标| 自我介绍| |学号|20188750| 自我介绍: 普通大三学生,正在备 阅读全文
posted @ 2020-09-08 17:41 -agl 阅读(88) 评论(0) 推荐(0) 编辑
  2019年6月22日
摘要: 一、我学到的内容: 二、我的收获: 一、https://www.cnblogs.com/agl20188750/p/10466606.html查找函数。 二、https://www.cnblogs.com/agl20188750/p/10466527.html求最大值及下标。 三、https://w 阅读全文
posted @ 2019-06-22 15:54 -agl 阅读(115) 评论(1) 推荐(0) 编辑
  2019年3月29日
摘要: | | | |: :|: :| | 这个作业属于哪个课程| C语言程序设计 | |这个作业要求在哪里| 2019春第五周作业 | |我的课程目标| 学习運用字符串数组| |这个作业在哪个具体方面帮助我实现目标| 这个作业让我了解字符串数组的运用| |参考文献|http://c.biancheng.n 阅读全文
posted @ 2019-03-29 21:23 -agl 阅读(163) 评论(1) 推荐(0) 编辑
  2019年3月22日
摘要: 7 2 选择法排序 (20 分) 本题要求将给定的n个整数从大到小排序后输出。 输入格式: 输入第一行给出一个不超过10的正整数n。第二行给出n个整数,其间以空格分隔。 输出格式: 在一行中输出从大到小有序的数列,相邻数字间有一个空格,行末不得有多余空格。 输入样例: 4 5 1 7 6 输出样例: 阅读全文
posted @ 2019-03-22 13:57 -agl 阅读(206) 评论(1) 推荐(0) 编辑
  2019年3月16日
摘要: 7 1 判断上三角矩阵 (15 分) 上三角矩阵指主对角线以下的元素都为0的矩阵;主对角线为从矩阵的左上角至右下角的连线。 本题要求编写程序,判断一个给定的方阵是否上三角矩阵。 代码 include int main() { int T; scanf("%d",&T); int i,j,t,flag 阅读全文
posted @ 2019-03-16 11:07 -agl 阅读(268) 评论(1) 推荐(0) 编辑
  2019年3月9日
摘要: 1、实验代码: #include<stdio.h>#include<stdlib.h>int main(){FILE*fp;int i,n,max,number;int a[10];if((fp=fopen("C:\\Users\\Public\\Documents\\-agl.txt","r")) 阅读全文
posted @ 2019-03-09 19:05 -agl 阅读(182) 评论(1) 推荐(0) 编辑
  2019年3月3日
摘要: 一、实验代码: #include <stdio.h>int main(){ int n,x,i; scanf("%d %d",&n,&x); int a[n]; for (i = 0; i < n; i++) { scanf("%d",&a[i]); } for (int j = 0; j < n; 阅读全文
posted @ 2019-03-03 17:42 -agl 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 一、实验代码: #include<stdio.h>int main(){ int n,i,max,number,j; scanf("%d",&n); int a[n]; for(i=0;i<=n;i++) { scanf("%d",&a[i]); } max=a[0]; number=0; for( 阅读全文
posted @ 2019-03-03 17:26 -agl 阅读(442) 评论(0) 推荐(0) 编辑