From 36c837157b8d3368d89056a8c33fba3812331171 Mon Sep 17 00:00:00 2001 From: czimbalmoskristof23 Date: Thu, 21 Mar 2024 18:54:26 +0100 Subject: [PATCH] Cikusok --- Ciklusok/App.config | 6 ++ Ciklusok/Ciklusok.csproj | 53 +++++++++++++++++ Ciklusok/Program.cs | 59 +++++++++++++++++++ Ciklusok/Properties/AssemblyInfo.cs | 36 +++++++++++ ElsoProjekt.sln | 14 ++++- KoPapirOllo/App.config | 6 ++ KoPapirOllo/KoPapirOllo.csproj | 53 +++++++++++++++++ KoPapirOllo/Program.cs | 55 +++++++++++++++++ KoPapirOllo/Properties/AssemblyInfo.cs | 36 +++++++++++ szokoev_gyak_0301/Program.cs | 8 ++- ...proj => szokoev_gyak_elagazas_0301.csproj} | 0 11 files changed, 323 insertions(+), 3 deletions(-) create mode 100644 Ciklusok/App.config create mode 100644 Ciklusok/Ciklusok.csproj create mode 100644 Ciklusok/Program.cs create mode 100644 Ciklusok/Properties/AssemblyInfo.cs create mode 100644 KoPapirOllo/App.config create mode 100644 KoPapirOllo/KoPapirOllo.csproj create mode 100644 KoPapirOllo/Program.cs create mode 100644 KoPapirOllo/Properties/AssemblyInfo.cs rename szokoev_gyak_0301/{szokoev_gyak_0301.csproj => szokoev_gyak_elagazas_0301.csproj} (100%) diff --git a/Ciklusok/App.config b/Ciklusok/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/Ciklusok/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Ciklusok/Ciklusok.csproj b/Ciklusok/Ciklusok.csproj new file mode 100644 index 0000000..9d6dcdc --- /dev/null +++ b/Ciklusok/Ciklusok.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {C83BBD48-2724-44AB-93F0-0FE85E764ADC} + Exe + Ciklusok + Ciklusok + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Ciklusok/Program.cs b/Ciklusok/Program.cs new file mode 100644 index 0000000..19df6db --- /dev/null +++ b/Ciklusok/Program.cs @@ -0,0 +1,59 @@ +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); + } + + } + } + + } +} diff --git a/Ciklusok/Properties/AssemblyInfo.cs b/Ciklusok/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..5161886 --- /dev/null +++ b/Ciklusok/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Ciklusok")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Ciklusok")] +[assembly: AssemblyCopyright("Copyright © 2024")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("c83bbd48-2724-44ab-93f0-0fe85e764adc")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/ElsoProjekt.sln b/ElsoProjekt.sln index c331f66..2671e9c 100644 --- a/ElsoProjekt.sln +++ b/ElsoProjekt.sln @@ -7,7 +7,11 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ElsoProjekt", "ElsoProjekt\ EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "bevitel_gyak_0301", "bevitel_gyak_0301\bevitel_gyak_0301.csproj", "{6C714AB0-01F5-4AD3-9451-B0731B9BE904}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "szokoev_gyak_0301", "szokoev_gyak_0301\szokoev_gyak_0301.csproj", "{DFD593CA-D558-4FB7-ABBB-8144DB35ED63}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "szokoev_gyak_elagazas_0301", "szokoev_gyak_0301\szokoev_gyak_elagazas_0301.csproj", "{DFD593CA-D558-4FB7-ABBB-8144DB35ED63}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ciklusok", "Ciklusok\Ciklusok.csproj", "{C83BBD48-2724-44AB-93F0-0FE85E764ADC}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KoPapirOllo", "KoPapirOllo\KoPapirOllo.csproj", "{F461373B-3C57-4E54-9E78-8F6D6929E389}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -27,6 +31,14 @@ Global {DFD593CA-D558-4FB7-ABBB-8144DB35ED63}.Debug|Any CPU.Build.0 = Debug|Any CPU {DFD593CA-D558-4FB7-ABBB-8144DB35ED63}.Release|Any CPU.ActiveCfg = Release|Any CPU {DFD593CA-D558-4FB7-ABBB-8144DB35ED63}.Release|Any CPU.Build.0 = Release|Any CPU + {C83BBD48-2724-44AB-93F0-0FE85E764ADC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C83BBD48-2724-44AB-93F0-0FE85E764ADC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C83BBD48-2724-44AB-93F0-0FE85E764ADC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C83BBD48-2724-44AB-93F0-0FE85E764ADC}.Release|Any CPU.Build.0 = Release|Any CPU + {F461373B-3C57-4E54-9E78-8F6D6929E389}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F461373B-3C57-4E54-9E78-8F6D6929E389}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F461373B-3C57-4E54-9E78-8F6D6929E389}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F461373B-3C57-4E54-9E78-8F6D6929E389}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/KoPapirOllo/App.config b/KoPapirOllo/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/KoPapirOllo/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/KoPapirOllo/KoPapirOllo.csproj b/KoPapirOllo/KoPapirOllo.csproj new file mode 100644 index 0000000..3e9f303 --- /dev/null +++ b/KoPapirOllo/KoPapirOllo.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {F461373B-3C57-4E54-9E78-8F6D6929E389} + Exe + KoPapirOllo + KoPapirOllo + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/KoPapirOllo/Program.cs b/KoPapirOllo/Program.cs new file mode 100644 index 0000000..8307084 --- /dev/null +++ b/KoPapirOllo/Program.cs @@ -0,0 +1,55 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace KoPapirOllo +{ + class Program + { + static void Main(string[] args) + { + string beiras = "kezd"; + do + { + Console.WriteLine("Válasz egyet kő, papír vagy olló?"); + beiras = Console.ReadLine(); + if (beiras!="stop") + { + Random sorsolo = new Random(); + int gepszam = sorsolo.Next(1, 4); + string gepszoveg = ""; + switch (gepszam) + { + case 1: + gepszoveg = "kő"; + break; + case 2: + gepszoveg = "papír"; + break; + default : + gepszoveg = "Olló"; + break; + } + Console.WriteLine($"A gép által gondolva: {gepszoveg}"); + if (beiras == gepszoveg) + { + Console.WriteLine("Döntetlen az eredmény!\n"); + } + else if ((beiras == "kő" && gepszoveg == "olló") || (beiras == "papír" && gepszoveg == "kő") || (beiras == "olló" && gepszoveg == "papír")) + { + Console.WriteLine("Nyertél !\n"); + } + else + { + Console.WriteLine("A gép nyert !\n"); + } + } + } while (beiras!="stop"); + + + + } + } +} diff --git a/KoPapirOllo/Properties/AssemblyInfo.cs b/KoPapirOllo/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..357a46d --- /dev/null +++ b/KoPapirOllo/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("KoPapirOllo")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("KoPapirOllo")] +[assembly: AssemblyCopyright("Copyright © 2024")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("f461373b-3c57-4e54-9e78-8f6d6929e389")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/szokoev_gyak_0301/Program.cs b/szokoev_gyak_0301/Program.cs index 519cb3d..ffc8083 100644 --- a/szokoev_gyak_0301/Program.cs +++ b/szokoev_gyak_0301/Program.cs @@ -58,9 +58,13 @@ namespace szokoev_gyak_0301 }else { Console.WriteLine("Ilyen hónap nincs!"); - } - Console.WriteLine("A" + ev + "éveben"); + Console.WriteLine("A "+ ev +" évben a "+ho+ " hónapban "+napok+" nap van."); + //vagy + Console.WriteLine("A {0}. éveben a {1}. hónapban {2} nap van.", ev, ho, napok); + //vagy + Console.WriteLine($"A {ev}. éveben a {ho}. hónapban {napok} nap van."); } + } } diff --git a/szokoev_gyak_0301/szokoev_gyak_0301.csproj b/szokoev_gyak_0301/szokoev_gyak_elagazas_0301.csproj similarity index 100% rename from szokoev_gyak_0301/szokoev_gyak_0301.csproj rename to szokoev_gyak_0301/szokoev_gyak_elagazas_0301.csproj