UVA 11799 (Horror Dash)

Solve in C:

#include<stdio.h>
int main()
{

    long int max,n,a,i,j,a1;
    scanf("%ld",&a);
    for(i=1; i<=a; i++)
    {
        max=0;
        scanf("%ld",&n);
        for(j=1; j<=n; j++)
        {
            scanf("%ld",&a1);
            if(a1>max)
                max=a1;
        }

        printf("Case %ld: %ld\n",i,max);
    }
    return 0;
}

No comments

Most View Post

Recent post

Codeforces Round 925 (Div. 3) 1931D. Divisible Pairs Solution

    Problem Link  :   https://codeforces.com/contest/1931/problem/D S olution in C++: /// Author : AH_Tonmoy #include < bits / stdc ++. ...

Powered by Blogger.