121842024-12-06 18:06:15SamuÚthasználati díj (75 pont)csharpCompilation error
namespace uthasznalati_dij
{
    internal class Program
    {
        static void Main(string[] args)
        {
            //Első sor beolvasás
            Console.Error.WriteLine("városok száma, pénz mennyisége");
            string sor = Console.ReadLine();
            string[] sorreszek = sor.Split(' ');
            
            int varosdb = Convert.ToInt32(sorreszek[0]);
            int penzmennyiseg = Convert.ToInt32(sorreszek[1]);

            //Második sor beolvasás
            Console.Error.Write("Adatok: ");
            sor = Console.ReadLine();
            sorreszek = sor.Split(' ');

            int[] telepulesadatok = new int[varosdb];
            for (int i = 0; i < varosdb; i++)
            {
                telepulesadatok[i] = Convert.ToInt32(sorreszek[i]); //a településadatok csak 0 és 1 számjegyeket tartalmazhatnak
            }

            //Megoldás
            int lehetosegek = 0; //Ebben a változóban van a megoldás
            for (int i = 0;i < telepulesadatok.Length; i++)
            {
                if (telepulesadatok[i]==1)
                {
                    for (int j = i; j < varosdb - i; j++)
                    {
                        if (telepulesadatok[j] == 1)
                        {
                            lehetosegek++;
                        }
                    }
                }
            }

            Console.WriteLine(lehetosegek);
        }
    }
}
Compilation error
open /var/local/lib/isolate/434/box/main.exe: no such file or directory
main.cs(8,13): error CS0103: The name `Console' does not exist in the current context
main.cs(9,26): error CS0103: The name `Console' does not exist in the current context
main.cs(12,27): error CS0103: The name `Convert' does not exist in the current context
main.cs(13,33): error CS0103: The name `Convert' does not exist in the current context
main.cs(16,13): error CS0103: The name `Console' does not exist in the current context
main.cs(17,19): error CS0103: The name `Console' does not exist in the current context
main.cs(23,38): error CS0103: The name `Convert' does not exist in the current context
main.cs(42,13): error CS0103: The name `Console' does not exist in the current context
Compilation failed: 8 error(s), 0 warnings