摘要: 本题要求编写程序,找出给定的n个数中的最大值及其对应的最小下标(下标从0开始)。 输入格式: 输入在第一行中给出一个正整数n(1 int main () { int n; int max; scanf("%d",&n); int a[n]; for(int i=0;i 阅读全文