90692024-02-13 17:00:27AncsaCsúcsokcpp17Compilation error
#include <iostream>
using namespace std;
/*
void kiirmat(int s, int o, int *m)
{
    for(int i=0;i<s;i++)
    {
        for(int j=0;j<o;j++)
            cout<<m[i*s+j]<<"\t";
        cout<<endl;
    }
    return;
}
*/
/*
4 5
3 2 8 4
8 5 6 1 3
*/

int main()
{
    int n, m;
    cin>>n>>m;
    int a[n],b[m];
    int mat[n+2][m+2];

    for(int i=0;i<n+2;i++)
        for(int j=0;j<m+2;j++)
           mat[i][j]=0;

    for(int i=0;i<n;i++)
    {
        cin>>a[i];
    }
    for(int i=0;i<m;i++)
    {
        cin>>b[i];
    }

    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=m;j++)
            mat[i][j]=a[i-1]*b[j-1];
    }
    //kiirmat(n+2,m+2,*mat);
    /*
    for(int i=0;i<n+2;i++)
    {
        for(int j=0;j<m+2;j++)
            cout<<mat[i][j]<<"\t";
        cout<<endl;
    }
*/
    int csucssz=0;
    for(int i=1;i<n+1;i++)
        for(int j=1;j<m+1;j++)
        {
            if (mat[i][j]>mat[i-1][j] && mat[i][j]>mat[i+1][j] && mat[i][j]>mat[i][j-1] && mat[i][j]>mat[i][j+1])
                csucssz++;
        }


    cout << csucssz << endl;
    return 0;
}
Részfeladat	Összpont	Teszt	Verdikt	Idő	Memória
Compilation error
exit status 1
main.cpp:67:1: error: 'R\U000000e9szfeladat' does not name a type
   67 | Részfeladat     Összpont        Teszt   Verdikt Idő     Memória
      | ^~~~~~~~~~~
Exited with error status 1