2019年pta作业第二题——求最大值及其下标

7-2 求最大值及其下标 (20 分)

本题要求编写程序,找出给定的n个数中的最大值及其对应的最小下标(下标从0开始)。
输入格式:
输入在第一行中给出一个正整数n(1<n≤10)。第二行输入n个整数,用空格分开。
输出格式:
在一行中输出最大值及最大值的最小下标,中间用一个空格分开。
输入样例:
6
2 8 10 1 9 10
输出样例:
10 2

程序代码:

include<stdio.h>

int main (void)
{
int i, n, x, y = 0;
int a[10];

scanf("%d", &n);

for(i = 0;i < n; i++)
{
scanf("%d", &a[i]);
}
x = a[0];

for(i = 0;i < n; i++)
{
    if(x < a[i])
    {
        x = a[i];
        y = i;
     }
}

printf("%d %d", x, y);

return 0;

}

成功截图:

流程图:

猜你喜欢

转载自www.cnblogs.com/txtnb/p/10449710.html
今日推荐