UVA 11799


  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6.     int t,n,speed;
  7.     cin>>t;
  8.     for(int i=1;i<=t;i++){
  9.         int ans=0;
  10.         cin>>n;
  11.         for(int i=0;i<n;i++){
  12.             cin>>speed;
  13.             ans=max(ans,speed);
  14.         }
  15.         cout<<"Case "<<i<<": "<<ans<<endl;
  16.     }
  17.  
  18.     return 0;
  19. }

No comments

Theme images by Jason Morrow. Powered by Blogger.