3.json 1.7 KB
Newer Older
每日一练社区's avatar
test  
每日一练社区 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
{
   "question_id": 7455894,
   "question_title": "任意输入10数,存入数组,找出显示最大值,并且标记所在位置。",
   "question_content": "任意输入10数,存入数组,找出显示最大值,并且标记所在位置。",
   "difficulty": "简单",
   "answer_id": 53439230,
   "answer_content": "<p>代码如下&#xff0c;如有帮助&#xff0c;请采纳一下&#xff0c;谢谢。</p>\n\n<pre>\n<code>#include &lt;stdio.h&gt;\nint main()\n{\n\tint a[10],i,max,maxindex;\n\tfor(i &#61;0;i&lt;10;i&#43;&#43;)\n\t\tscanf(&#34;%d&#34;,&amp;a[i]);\n\n\t//找最大的数\n\tmax &#61; a[0];  //先将最大的数设为0\n\tmaxindex &#61; 0;//最大的数的索引\n\tfor (i &#61;1;i&lt;10;i&#43;&#43;)\n\t{\n\t\tif(a[i] &gt; max)\n\t\t{\n\t\t\tmax &#61; a[i];    //替换最大值\n\t\t\tmaxindex &#61; i;  //记录最大值索引\n\t\t}\n\t}\n\tprintf(&#34;最大值%d&#xff0c;索引:%d\\n&#34;,max,maxindex);\n\treturn 0;\n}</code></pre>\n\n<p> </p>\n",
   "tag_name": "c语言",
   "cpp": "#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\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
}