답안 #148357

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
148357 2019-09-01T04:02:14 Z sg1774 최댓값 (tutorial2) C++11
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;
GetMax(int n, int a[200])
{
    scanf("%d",&n);
    for(int i=0;i<z;i++) scanf("%d",&a[i]);
    int s=0;
    for(int i=0;i<n;i++) s=max(s,a[i]);
    printf("%d",s);
    return 0;
}

Compilation message

tutorial2.cpp:3:25: error: ISO C++ forbids declaration of 'GetMax' with no type [-fpermissive]
 GetMax(int n, int a[200])
                         ^
tutorial2.cpp: In function 'int GetMax(int, int*)':
tutorial2.cpp:6:19: error: 'z' was not declared in this scope
     for(int i=0;i<z;i++) scanf("%d",&a[i]);
                   ^
tutorial2.cpp:5:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d",&n);
     ~~~~~^~~~~~~~~
tutorial2.cpp:6:31: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
     for(int i=0;i<z;i++) scanf("%d",&a[i]);
                          ~~~~~^~~~~~~~~~~~