Menü

TÉMAKÖRÖK

FŐOLDAL 
C# PROGRAMOZÁS
WEBPROGRAMOZÁS
ADATBÁZISKEZELÉS
HÁLÓZAT ISMERET
school icon png

Üdvözöllek az oldalon!

Ezen a portálon informatikával kapcsolatos dolgokkal találkozhattok. Remélem tud, majd segíteni nektek! :)

 
c# programozás
Listák feltöltésével kapcsolatos feladatok: {katt ide}
Kiírás:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.IO;

namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
string verseny = @"C:\Users\Kristof_Eniko\Documents\Visual Studio 2015\Projects\";
StreamWriter kiirom = new StreamWriter(verseny, true, Encoding.Default);
for (int i = 1; i <= 5; i++)
{
kiirom.WriteLine("Lelkes Aranka 1. 1:20");
kiirom.WriteLine("Dill Emma 2. 1:23");
kiirom.WriteLine("Csőrös Anett 3. 1:30");
kiirom.WriteLine("Kecskés Mónika 4. 1:31");
kiirom.WriteLine("Kiss Zsófia 5. 1:35");
}
kiirom.Close();
}
}
}