20842022-12-16 20:46:24eokorLudak Harcacpp11Compilation error
#include <iostream>
//#include <fstream>

using namespace std;

int main()
{
    ifstream cin("be.txt");
    long long int n;
    cin>>n;
    long long int tabla[n],hossz;
    hossz=n;
    int osszeg[7]={}
    cin>>tabla[0];
    int seg;
    while(hossz>6)
    {
        for(int i=1;i<=6;i++)
        {
        cin>>seg;
        tabla[i]=tabla[tabla[[i]]+seg;
        osszeg[i]++;
        }
        for(int i=1;i<=6;i++)
        {
        while(tabla[i]<=6){
            tabla[i]=tabla[i]+tabla[tabla[i]];
            osszeg[i]++;
        }
        tabla[i]=tabla[i]/6*tabla[i]%6;
        }
        hossz-=6;
    }
    for(int i=1;i<=6;i++)
    {
        cout<<osszeg[i]<<" ";
    }

///fapados
//    int n;
//    cin>>n;
//    int tabla[n],hossz,osszeg[7]={};
//    hossz=n;
//    int seg;
//        for(int i=0;i<n;i++)
//        {
//        cin>>tabla[i];
//        }
//
//    for(int i=1;i<=6;i++)
//    {
//        int ind=0;
//        while(ind<n)
//        {
//            while(tabla[ind]!=0)
//            {
//                ind+=tabla[ind];
//            }
//
//            while(tabla[ind]==0 && ind<n)
//            {
//                osszeg[i]++;
//                ind+=i;
//            }
//        }
//    }
//    for(int i=1;i<=6;i++)
//    {
//        cout<<osszeg[i]<<" ";
//    }

    return 0;
}
Compilation error
exit status 1
main.cpp: In function 'int main()':
main.cpp:8:17: error: variable 'std::ifstream cin' has initializer but incomplete type
    8 |     ifstream cin("be.txt");
      |                 ^
main.cpp:14:5: error: expected ',' or ';' before 'cin'
   14 |     cin>>tabla[0];
      |     ^~~
main.cpp:21:29: error: two consecutive '[' shall only introduce an attribute before '[' token
   21 |         tabla[i]=tabla[tabla[[i]]+seg;
      |                             ^
main.cpp:21:29: error: expected ']' before '[' token
   21 |         tabla[i]=tabla[tabla[[i]]+seg;
      |                             ^
      |                             ]
main.cpp:21:29: error: two consecutive '[' shall only introduce an attribute before '[' token
Exited with error status 1