1_Projekt_CzK_0228/Ciklusok/Program.cs

60 lines
1.4 KiB
C#
Raw Permalink Normal View History

2024-03-21 17:54:26 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Ciklusok
{
class Program
{
static void Main(string[] args)
{
//3 szám bekérése és azok összege
int osszeg = 0;
for (int i=0; i < 3;i++)
{
Console.WriteLine($"Adja meg a {i+1}. számot");
osszeg = osszeg + int.Parse(Console.ReadLine());
}
Console.WriteLine($"A összeg: {osszeg}");
string beiras = "fut";
bool fut = true;
while (fut)
{
Console.WriteLine("Írj be szavakat!");
beiras = Console.ReadLine();
if(beiras=="stop")
{
fut = false;
}
fut = (beiras != "stop");
}
do
{
Console.WriteLine("Most hátultesztelő ciklus ad meg egy szót:");
beiras = Console.ReadLine();
} while (beiras!="stop");
for (int i = 0; i < 20; i++)
{
if(i%2==0)
{
continue;
}
else if (i > 17)
{
break;
}
else
{
Console.WriteLine(i);
}
}
}
}
}