{ "question_id": 7455894, "question_title": "任意输入10数,存入数组,找出显示最大值,并且标记所在位置。", "question_content": "任意输入10数,存入数组,找出显示最大值,并且标记所在位置。", "difficulty": "简单", "answer_id": 53439230, "answer_content": "

代码如下,如有帮助,请采纳一下,谢谢。

\n\n
\n#include <stdio.h>\nint main()\n{\n\tint a[10],i,max,maxindex;\n\tfor(i =0;i<10;i++)\n\t\tscanf("%d",&a[i]);\n\n\t//找最大的数\n\tmax = a[0];  //先将最大的数设为0\n\tmaxindex = 0;//最大的数的索引\n\tfor (i =1;i<10;i++)\n\t{\n\t\tif(a[i] > max)\n\t\t{\n\t\t\tmax = a[i];    //替换最大值\n\t\t\tmaxindex = i;  //记录最大值索引\n\t\t}\n\t}\n\tprintf("最大值%d,索引:%d\\n",max,maxindex);\n\treturn 0;\n}
\n\n

 

\n", "tag_name": "c语言", "cpp": "#include \nint main()\n{\n\tint a[10],i,max,maxindex;\n\tfor(i =0;i<10;i++)\n\t\tscanf(\"%d\",&a[i]);\n\tmax = a[0]; \n\tmaxindex = 0;\n\tfor (i =1;i<10;i++)\n\t{\n\t\tif(a[i] > max)\n\t\t{\n\t\t\tmax = a[i];\t\n\t\t\tmaxindex = i; \n\t\t}\n\t}\n\tprintf(\"最大值%d,索引:%d\\n\",max,maxindex);\n\treturn 0;\n}", "topic_link": "https://bbs.csdn.net/topics/600469936", "status": 1, "keywords": "算法初阶,最小值和最大值,排序和顺序统计量,中位数和顺序统计量", "license": "csdn.net", "notebook": { "cpp": "https://codechina.csdn.net/csdn/csdn-daily-code/-/jupyter/master/data/notebook/answer/ipynb/cpp/3.ipynb?type=file" }, "notebook_enable": 1, "author": "qq_43254190" }