Vektorok feladat
This commit is contained in:
Binary file not shown.
6
Binaris/App.config
Normal file
6
Binaris/App.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
26
Binaris/Binaris.cs
Normal file
26
Binaris/Binaris.cs
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Binaris {
|
||||||
|
internal class Binaris {
|
||||||
|
private string szam;
|
||||||
|
|
||||||
|
public Binaris() {
|
||||||
|
Console.WriteLine("Kérem a számot");
|
||||||
|
szam = Console.ReadLine();
|
||||||
|
egyesek_szama();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void egyesek_szama() {
|
||||||
|
int count = 0;
|
||||||
|
for (int i = 0; i < szam.Length; i++)
|
||||||
|
if (szam[i].Equals('1')) count++;
|
||||||
|
|
||||||
|
Console.WriteLine("Egyesek szama: " + count);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
54
Binaris/Binaris.csproj
Normal file
54
Binaris/Binaris.csproj
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{B9D84424-1C01-4F48-A27E-301AF2992F18}</ProjectGuid>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<RootNamespace>Binaris</RootNamespace>
|
||||||
|
<AssemblyName>Binaris</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
<Deterministic>true</Deterministic>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Binaris.cs" />
|
||||||
|
<Compile Include="Program.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="App.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
</Project>
|
||||||
14
Binaris/Program.cs
Normal file
14
Binaris/Program.cs
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Binaris {
|
||||||
|
internal class Program {
|
||||||
|
static void Main(string[] args) {
|
||||||
|
Binaris binaris = new Binaris();
|
||||||
|
Console.ReadKey();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
36
Binaris/Properties/AssemblyInfo.cs
Normal file
36
Binaris/Properties/AssemblyInfo.cs
Normal file
@@ -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("Binaris")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("Binaris")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2022")]
|
||||||
|
[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("b9d84424-1c01-4f48-a27e-301af2992f18")]
|
||||||
|
|
||||||
|
// 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")]
|
||||||
BIN
Binaris/bin/Debug/Binaris.exe
Normal file
BIN
Binaris/bin/Debug/Binaris.exe
Normal file
Binary file not shown.
6
Binaris/bin/Debug/Binaris.exe.config
Normal file
6
Binaris/bin/Debug/Binaris.exe.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
BIN
Binaris/bin/Debug/Binaris.pdb
Normal file
BIN
Binaris/bin/Debug/Binaris.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
|
||||||
BIN
Binaris/obj/Debug/Binaris.csproj.AssemblyReference.cache
Normal file
BIN
Binaris/obj/Debug/Binaris.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
1
Binaris/obj/Debug/Binaris.csproj.CoreCompileInputs.cache
Normal file
1
Binaris/obj/Debug/Binaris.csproj.CoreCompileInputs.cache
Normal file
@@ -0,0 +1 @@
|
|||||||
|
c3e4d6db489fd33fa389a9b349d3e7172e438be5
|
||||||
8
Binaris/obj/Debug/Binaris.csproj.FileListAbsolute.txt
Normal file
8
Binaris/obj/Debug/Binaris.csproj.FileListAbsolute.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
C:\dev\c#\c-sharp\Binaris\bin\Debug\Binaris.exe.config
|
||||||
|
C:\dev\c#\c-sharp\Binaris\bin\Debug\Binaris.exe
|
||||||
|
C:\dev\c#\c-sharp\Binaris\bin\Debug\Binaris.pdb
|
||||||
|
C:\dev\c#\c-sharp\Binaris\obj\Debug\Binaris.csproj.AssemblyReference.cache
|
||||||
|
C:\dev\c#\c-sharp\Binaris\obj\Debug\Binaris.csproj.SuggestedBindingRedirects.cache
|
||||||
|
C:\dev\c#\c-sharp\Binaris\obj\Debug\Binaris.csproj.CoreCompileInputs.cache
|
||||||
|
C:\dev\c#\c-sharp\Binaris\obj\Debug\Binaris.exe
|
||||||
|
C:\dev\c#\c-sharp\Binaris\obj\Debug\Binaris.pdb
|
||||||
BIN
Binaris/obj/Debug/Binaris.exe
Normal file
BIN
Binaris/obj/Debug/Binaris.exe
Normal file
Binary file not shown.
BIN
Binaris/obj/Debug/Binaris.pdb
Normal file
BIN
Binaris/obj/Debug/Binaris.pdb
Normal file
Binary file not shown.
BIN
Binaris/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Normal file
BIN
Binaris/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Normal file
Binary file not shown.
6
Kettes/App.config
Normal file
6
Kettes/App.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
54
Kettes/Kettes.csproj
Normal file
54
Kettes/Kettes.csproj
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{912C55E2-D84F-499F-AE54-B0F43CD4DDBD}</ProjectGuid>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<RootNamespace>Kettes</RootNamespace>
|
||||||
|
<AssemblyName>Kettes</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
<Deterministic>true</Deterministic>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Ketto.cs" />
|
||||||
|
<Compile Include="Program.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="App.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
</Project>
|
||||||
21
Kettes/Ketto.cs
Normal file
21
Kettes/Ketto.cs
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Kettes {
|
||||||
|
internal class Ketto {
|
||||||
|
private int szam;
|
||||||
|
|
||||||
|
public Ketto() {
|
||||||
|
szam = Convert.ToInt32(Console.ReadLine());
|
||||||
|
konvertalas();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void konvertalas() {
|
||||||
|
string binaris = Convert.ToString(szam, 2);
|
||||||
|
Console.WriteLine(binaris);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
14
Kettes/Program.cs
Normal file
14
Kettes/Program.cs
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Kettes {
|
||||||
|
internal class Program {
|
||||||
|
static void Main(string[] args) {
|
||||||
|
Ketto ketto= new Ketto();
|
||||||
|
Console.ReadKey();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
36
Kettes/Properties/AssemblyInfo.cs
Normal file
36
Kettes/Properties/AssemblyInfo.cs
Normal file
@@ -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("Kettes")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("Kettes")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2022")]
|
||||||
|
[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("912c55e2-d84f-499f-ae54-b0f43cd4ddbd")]
|
||||||
|
|
||||||
|
// 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")]
|
||||||
BIN
Kettes/bin/Debug/Kettes.exe
Normal file
BIN
Kettes/bin/Debug/Kettes.exe
Normal file
Binary file not shown.
6
Kettes/bin/Debug/Kettes.exe.config
Normal file
6
Kettes/bin/Debug/Kettes.exe.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
BIN
Kettes/bin/Debug/Kettes.pdb
Normal file
BIN
Kettes/bin/Debug/Kettes.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
|
||||||
BIN
Kettes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Normal file
BIN
Kettes/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Normal file
Binary file not shown.
BIN
Kettes/obj/Debug/Kettes.csproj.AssemblyReference.cache
Normal file
BIN
Kettes/obj/Debug/Kettes.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
1
Kettes/obj/Debug/Kettes.csproj.CoreCompileInputs.cache
Normal file
1
Kettes/obj/Debug/Kettes.csproj.CoreCompileInputs.cache
Normal file
@@ -0,0 +1 @@
|
|||||||
|
0ad582048f6b58ea46070a200538b64c25241d26
|
||||||
8
Kettes/obj/Debug/Kettes.csproj.FileListAbsolute.txt
Normal file
8
Kettes/obj/Debug/Kettes.csproj.FileListAbsolute.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
C:\dev\c#\c-sharp\Kettes\bin\Debug\Kettes.exe.config
|
||||||
|
C:\dev\c#\c-sharp\Kettes\bin\Debug\Kettes.exe
|
||||||
|
C:\dev\c#\c-sharp\Kettes\bin\Debug\Kettes.pdb
|
||||||
|
C:\dev\c#\c-sharp\Kettes\obj\Debug\Kettes.csproj.AssemblyReference.cache
|
||||||
|
C:\dev\c#\c-sharp\Kettes\obj\Debug\Kettes.csproj.SuggestedBindingRedirects.cache
|
||||||
|
C:\dev\c#\c-sharp\Kettes\obj\Debug\Kettes.csproj.CoreCompileInputs.cache
|
||||||
|
C:\dev\c#\c-sharp\Kettes\obj\Debug\Kettes.exe
|
||||||
|
C:\dev\c#\c-sharp\Kettes\obj\Debug\Kettes.pdb
|
||||||
BIN
Kettes/obj/Debug/Kettes.exe
Normal file
BIN
Kettes/obj/Debug/Kettes.exe
Normal file
Binary file not shown.
BIN
Kettes/obj/Debug/Kettes.pdb
Normal file
BIN
Kettes/obj/Debug/Kettes.pdb
Normal file
Binary file not shown.
6
Lotto/App.config
Normal file
6
Lotto/App.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
40
Lotto/Lotto.cs
Normal file
40
Lotto/Lotto.cs
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Lotto {
|
||||||
|
internal class Lotto {
|
||||||
|
private int[] szamok = new int[5];
|
||||||
|
|
||||||
|
public Lotto() {
|
||||||
|
sorsolas();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void sorsolas() {
|
||||||
|
Random random = new Random();
|
||||||
|
bool nincs_benne = true;
|
||||||
|
for (int i = 0; i < 5; i++) {
|
||||||
|
int sorsolt = random.Next(1, 91);
|
||||||
|
for (int j = 0; j < szamok.Length; j++) {
|
||||||
|
if(sorsolt == szamok[i]) {
|
||||||
|
i--;
|
||||||
|
nincs_benne = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (nincs_benne) {
|
||||||
|
szamok[i] = sorsolt;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
kiir();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void kiir() {
|
||||||
|
for (int i = 0; i < szamok.Length; i++) {
|
||||||
|
Console.Write(szamok[i] + " ");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
54
Lotto/Lotto.csproj
Normal file
54
Lotto/Lotto.csproj
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{8BA5DF46-C5C3-431C-8029-86668039577E}</ProjectGuid>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<RootNamespace>Lotto</RootNamespace>
|
||||||
|
<AssemblyName>Lotto</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
<Deterministic>true</Deterministic>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Lotto.cs" />
|
||||||
|
<Compile Include="Program.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="App.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
</Project>
|
||||||
14
Lotto/Program.cs
Normal file
14
Lotto/Program.cs
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Lotto {
|
||||||
|
internal class Program {
|
||||||
|
static void Main(string[] args) {
|
||||||
|
Lotto lotto = new Lotto();
|
||||||
|
Console.ReadKey();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
36
Lotto/Properties/AssemblyInfo.cs
Normal file
36
Lotto/Properties/AssemblyInfo.cs
Normal file
@@ -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("Lotto")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("Lotto")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2022")]
|
||||||
|
[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("8ba5df46-c5c3-431c-8029-86668039577e")]
|
||||||
|
|
||||||
|
// 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")]
|
||||||
BIN
Lotto/bin/Debug/Lotto.exe
Normal file
BIN
Lotto/bin/Debug/Lotto.exe
Normal file
Binary file not shown.
6
Lotto/bin/Debug/Lotto.exe.config
Normal file
6
Lotto/bin/Debug/Lotto.exe.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
BIN
Lotto/bin/Debug/Lotto.pdb
Normal file
BIN
Lotto/bin/Debug/Lotto.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
|
||||||
BIN
Lotto/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Normal file
BIN
Lotto/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Normal file
Binary file not shown.
BIN
Lotto/obj/Debug/Lotto.csproj.AssemblyReference.cache
Normal file
BIN
Lotto/obj/Debug/Lotto.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
1
Lotto/obj/Debug/Lotto.csproj.CoreCompileInputs.cache
Normal file
1
Lotto/obj/Debug/Lotto.csproj.CoreCompileInputs.cache
Normal file
@@ -0,0 +1 @@
|
|||||||
|
3b962cba01c4ff6cc2460b4452c05fb7a602cbac
|
||||||
8
Lotto/obj/Debug/Lotto.csproj.FileListAbsolute.txt
Normal file
8
Lotto/obj/Debug/Lotto.csproj.FileListAbsolute.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
C:\dev\c#\c-sharp\Lotto\bin\Debug\Lotto.exe.config
|
||||||
|
C:\dev\c#\c-sharp\Lotto\bin\Debug\Lotto.exe
|
||||||
|
C:\dev\c#\c-sharp\Lotto\bin\Debug\Lotto.pdb
|
||||||
|
C:\dev\c#\c-sharp\Lotto\obj\Debug\Lotto.csproj.AssemblyReference.cache
|
||||||
|
C:\dev\c#\c-sharp\Lotto\obj\Debug\Lotto.csproj.SuggestedBindingRedirects.cache
|
||||||
|
C:\dev\c#\c-sharp\Lotto\obj\Debug\Lotto.csproj.CoreCompileInputs.cache
|
||||||
|
C:\dev\c#\c-sharp\Lotto\obj\Debug\Lotto.exe
|
||||||
|
C:\dev\c#\c-sharp\Lotto\obj\Debug\Lotto.pdb
|
||||||
BIN
Lotto/obj/Debug/Lotto.exe
Normal file
BIN
Lotto/obj/Debug/Lotto.exe
Normal file
Binary file not shown.
BIN
Lotto/obj/Debug/Lotto.pdb
Normal file
BIN
Lotto/obj/Debug/Lotto.pdb
Normal file
Binary file not shown.
6
Menu/App.config
Normal file
6
Menu/App.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
54
Menu/Menu.csproj
Normal file
54
Menu/Menu.csproj
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{FD69BF8E-F676-4DB3-8751-244AFCB01531}</ProjectGuid>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<RootNamespace>Menu</RootNamespace>
|
||||||
|
<AssemblyName>Menu</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
<Deterministic>true</Deterministic>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Menuk.cs" />
|
||||||
|
<Compile Include="Program.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="App.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
</Project>
|
||||||
40
Menu/Menuk.cs
Normal file
40
Menu/Menuk.cs
Normal file
@@ -0,0 +1,40 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Menu {
|
||||||
|
internal class Menuk {
|
||||||
|
private int valasztas;
|
||||||
|
|
||||||
|
public Menuk() {
|
||||||
|
menuPont();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setValasztas() {
|
||||||
|
Console.WriteLine("Adja meg a menupont szamat");
|
||||||
|
valasztas = Convert.ToInt32(Console.ReadLine());
|
||||||
|
}
|
||||||
|
|
||||||
|
public void menuPont() {
|
||||||
|
while (true) {
|
||||||
|
setValasztas();
|
||||||
|
|
||||||
|
if (valasztas == 1) {
|
||||||
|
Console.WriteLine("Elso menupont");
|
||||||
|
} else if (valasztas == 2) {
|
||||||
|
Console.WriteLine("Masodik menupont");
|
||||||
|
} else if (valasztas == 3) {
|
||||||
|
Console.WriteLine("Harmadik menupont");
|
||||||
|
} else if (valasztas == 4) {
|
||||||
|
Console.WriteLine("Negyedik menupont");
|
||||||
|
} else if (valasztas == 5) {
|
||||||
|
Console.WriteLine("Kilépés menupont");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
13
Menu/Program.cs
Normal file
13
Menu/Program.cs
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Menu {
|
||||||
|
internal class Program {
|
||||||
|
static void Main(string[] args) {
|
||||||
|
Menuk menu = new Menuk();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
36
Menu/Properties/AssemblyInfo.cs
Normal file
36
Menu/Properties/AssemblyInfo.cs
Normal file
@@ -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("Menu")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("Menu")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2022")]
|
||||||
|
[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("fd69bf8e-f676-4db3-8751-244afcb01531")]
|
||||||
|
|
||||||
|
// 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")]
|
||||||
BIN
Menu/bin/Debug/Menu.exe
Normal file
BIN
Menu/bin/Debug/Menu.exe
Normal file
Binary file not shown.
6
Menu/bin/Debug/Menu.exe.config
Normal file
6
Menu/bin/Debug/Menu.exe.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
BIN
Menu/bin/Debug/Menu.pdb
Normal file
BIN
Menu/bin/Debug/Menu.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
|
||||||
BIN
Menu/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Normal file
BIN
Menu/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Normal file
Binary file not shown.
BIN
Menu/obj/Debug/Menu.csproj.AssemblyReference.cache
Normal file
BIN
Menu/obj/Debug/Menu.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
1
Menu/obj/Debug/Menu.csproj.CoreCompileInputs.cache
Normal file
1
Menu/obj/Debug/Menu.csproj.CoreCompileInputs.cache
Normal file
@@ -0,0 +1 @@
|
|||||||
|
a92248c08ff790a09cf37916c82a8d94655721c9
|
||||||
8
Menu/obj/Debug/Menu.csproj.FileListAbsolute.txt
Normal file
8
Menu/obj/Debug/Menu.csproj.FileListAbsolute.txt
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
C:\dev\c#\c-sharp\Menu\bin\Debug\Menu.exe.config
|
||||||
|
C:\dev\c#\c-sharp\Menu\bin\Debug\Menu.exe
|
||||||
|
C:\dev\c#\c-sharp\Menu\bin\Debug\Menu.pdb
|
||||||
|
C:\dev\c#\c-sharp\Menu\obj\Debug\Menu.csproj.AssemblyReference.cache
|
||||||
|
C:\dev\c#\c-sharp\Menu\obj\Debug\Menu.csproj.SuggestedBindingRedirects.cache
|
||||||
|
C:\dev\c#\c-sharp\Menu\obj\Debug\Menu.csproj.CoreCompileInputs.cache
|
||||||
|
C:\dev\c#\c-sharp\Menu\obj\Debug\Menu.exe
|
||||||
|
C:\dev\c#\c-sharp\Menu\obj\Debug\Menu.pdb
|
||||||
BIN
Menu/obj/Debug/Menu.exe
Normal file
BIN
Menu/obj/Debug/Menu.exe
Normal file
Binary file not shown.
BIN
Menu/obj/Debug/Menu.pdb
Normal file
BIN
Menu/obj/Debug/Menu.pdb
Normal file
Binary file not shown.
6
Sorozatok/App.config
Normal file
6
Sorozatok/App.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
14
Sorozatok/Program.cs
Normal file
14
Sorozatok/Program.cs
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Sorozatok {
|
||||||
|
internal class Program {
|
||||||
|
static void Main(string[] args) {
|
||||||
|
Sorozat sorozat = new Sorozat();
|
||||||
|
Console.ReadKey();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
36
Sorozatok/Properties/AssemblyInfo.cs
Normal file
36
Sorozatok/Properties/AssemblyInfo.cs
Normal file
@@ -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("Sorozatok")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("Sorozatok")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2022")]
|
||||||
|
[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("c04e7877-b737-4300-b572-6fb7385046f5")]
|
||||||
|
|
||||||
|
// 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")]
|
||||||
53
Sorozatok/Sorozat.cs
Normal file
53
Sorozatok/Sorozat.cs
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Sorozatok {
|
||||||
|
internal class Sorozat {
|
||||||
|
private int[] szamok = new int[4];
|
||||||
|
|
||||||
|
public Sorozat() {
|
||||||
|
Console.WriteLine("Adja meg a számokat");
|
||||||
|
for (int i = 0; i < szamok.Length; i++) {
|
||||||
|
szamok[i] = Convert.ToInt32(Console.ReadLine());
|
||||||
|
}
|
||||||
|
mertani_e();
|
||||||
|
szamtani_e();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void mertani_e() {
|
||||||
|
int elso_hanyados = szamok[szamok.Length - 1] / szamok[szamok.Length - 2];
|
||||||
|
bool sorozat_e = true;
|
||||||
|
for (int i = szamok.Length -1; i > 0; i--) {
|
||||||
|
int akt_hanyados = szamok[i] / szamok[i - 1];
|
||||||
|
if (akt_hanyados != elso_hanyados) {
|
||||||
|
Console.WriteLine("A sorozat nem mértani!");
|
||||||
|
sorozat_e = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (sorozat_e) {
|
||||||
|
Console.WriteLine("A sorozat mértani!");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void szamtani_e() {
|
||||||
|
int elso_kulonbseg = szamok[szamok.Length - 1] - szamok[szamok.Length - 2];
|
||||||
|
bool sorozat_e = true;
|
||||||
|
for (int i = szamok.Length-1; i > 0; i--) {
|
||||||
|
int akt_kulonbseg = szamok[i] - szamok[i - 1];
|
||||||
|
if(akt_kulonbseg != elso_kulonbseg) {
|
||||||
|
Console.WriteLine("A sorozat nem számtani!");
|
||||||
|
sorozat_e = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (sorozat_e) {
|
||||||
|
Console.WriteLine("A sorozat számtani!");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
54
Sorozatok/Sorozatok.csproj
Normal file
54
Sorozatok/Sorozatok.csproj
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{C04E7877-B737-4300-B572-6FB7385046F5}</ProjectGuid>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<RootNamespace>Sorozatok</RootNamespace>
|
||||||
|
<AssemblyName>Sorozatok</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
<Deterministic>true</Deterministic>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Program.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
<Compile Include="Sorozat.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="App.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
</Project>
|
||||||
BIN
Sorozatok/bin/Debug/Sorozatok.exe
Normal file
BIN
Sorozatok/bin/Debug/Sorozatok.exe
Normal file
Binary file not shown.
6
Sorozatok/bin/Debug/Sorozatok.exe.config
Normal file
6
Sorozatok/bin/Debug/Sorozatok.exe.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
BIN
Sorozatok/bin/Debug/Sorozatok.pdb
Normal file
BIN
Sorozatok/bin/Debug/Sorozatok.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
|
||||||
Binary file not shown.
BIN
Sorozatok/obj/Debug/Sorozatok.csproj.AssemblyReference.cache
Normal file
BIN
Sorozatok/obj/Debug/Sorozatok.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
02800a11e146e40a09c69c80f85a14bab48400e5
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
C:\dev\c#\c-sharp\Sorozatok\bin\Debug\Sorozatok.exe.config
|
||||||
|
C:\dev\c#\c-sharp\Sorozatok\bin\Debug\Sorozatok.exe
|
||||||
|
C:\dev\c#\c-sharp\Sorozatok\bin\Debug\Sorozatok.pdb
|
||||||
|
C:\dev\c#\c-sharp\Sorozatok\obj\Debug\Sorozatok.csproj.AssemblyReference.cache
|
||||||
|
C:\dev\c#\c-sharp\Sorozatok\obj\Debug\Sorozatok.csproj.SuggestedBindingRedirects.cache
|
||||||
|
C:\dev\c#\c-sharp\Sorozatok\obj\Debug\Sorozatok.csproj.CoreCompileInputs.cache
|
||||||
|
C:\dev\c#\c-sharp\Sorozatok\obj\Debug\Sorozatok.exe
|
||||||
|
C:\dev\c#\c-sharp\Sorozatok\obj\Debug\Sorozatok.pdb
|
||||||
BIN
Sorozatok/obj/Debug/Sorozatok.exe
Normal file
BIN
Sorozatok/obj/Debug/Sorozatok.exe
Normal file
Binary file not shown.
BIN
Sorozatok/obj/Debug/Sorozatok.pdb
Normal file
BIN
Sorozatok/obj/Debug/Sorozatok.pdb
Normal file
Binary file not shown.
6
Szamrendszer/App.config
Normal file
6
Szamrendszer/App.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
23
Szamrendszer/Atvalto.cs
Normal file
23
Szamrendszer/Atvalto.cs
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Szamrendszer {
|
||||||
|
internal class Atvalto {
|
||||||
|
private int szam;
|
||||||
|
private int rendszer;
|
||||||
|
|
||||||
|
public Atvalto() {
|
||||||
|
szam = Convert.ToInt32(Console.ReadLine());
|
||||||
|
rendszer = Convert.ToInt32(Console.ReadLine());
|
||||||
|
konvertalas();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void konvertalas() {
|
||||||
|
string binaris = Convert.ToString(szam, rendszer);
|
||||||
|
Console.WriteLine(binaris);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
14
Szamrendszer/Program.cs
Normal file
14
Szamrendszer/Program.cs
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Szamrendszer {
|
||||||
|
internal class Program {
|
||||||
|
static void Main(string[] args) {
|
||||||
|
Atvalto atvalto = new Atvalto();
|
||||||
|
Console.ReadKey();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
36
Szamrendszer/Properties/AssemblyInfo.cs
Normal file
36
Szamrendszer/Properties/AssemblyInfo.cs
Normal file
@@ -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("Szamrendszer")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("Szamrendszer")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2022")]
|
||||||
|
[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("40b43ae7-7888-46b5-b680-834508ca2bcd")]
|
||||||
|
|
||||||
|
// 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")]
|
||||||
54
Szamrendszer/Szamrendszer.csproj
Normal file
54
Szamrendszer/Szamrendszer.csproj
Normal file
@@ -0,0 +1,54 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{40B43AE7-7888-46B5-B680-834508CA2BCD}</ProjectGuid>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<RootNamespace>Szamrendszer</RootNamespace>
|
||||||
|
<AssemblyName>Szamrendszer</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
<Deterministic>true</Deterministic>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Atvalto.cs" />
|
||||||
|
<Compile Include="Program.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="App.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
</Project>
|
||||||
BIN
Szamrendszer/bin/Debug/Szamrendszer.exe
Normal file
BIN
Szamrendszer/bin/Debug/Szamrendszer.exe
Normal file
Binary file not shown.
6
Szamrendszer/bin/Debug/Szamrendszer.exe.config
Normal file
6
Szamrendszer/bin/Debug/Szamrendszer.exe.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
BIN
Szamrendszer/bin/Debug/Szamrendszer.pdb
Normal file
BIN
Szamrendszer/bin/Debug/Szamrendszer.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
|
||||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
a3b09d7048013d22add4348d59a4cd03444831c8
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
C:\dev\c#\c-sharp\Szamrendszer\bin\Debug\Szamrendszer.exe.config
|
||||||
|
C:\dev\c#\c-sharp\Szamrendszer\bin\Debug\Szamrendszer.exe
|
||||||
|
C:\dev\c#\c-sharp\Szamrendszer\bin\Debug\Szamrendszer.pdb
|
||||||
|
C:\dev\c#\c-sharp\Szamrendszer\obj\Debug\Szamrendszer.csproj.AssemblyReference.cache
|
||||||
|
C:\dev\c#\c-sharp\Szamrendszer\obj\Debug\Szamrendszer.csproj.SuggestedBindingRedirects.cache
|
||||||
|
C:\dev\c#\c-sharp\Szamrendszer\obj\Debug\Szamrendszer.csproj.CoreCompileInputs.cache
|
||||||
|
C:\dev\c#\c-sharp\Szamrendszer\obj\Debug\Szamrendszer.exe
|
||||||
|
C:\dev\c#\c-sharp\Szamrendszer\obj\Debug\Szamrendszer.pdb
|
||||||
BIN
Szamrendszer/obj/Debug/Szamrendszer.exe
Normal file
BIN
Szamrendszer/obj/Debug/Szamrendszer.exe
Normal file
Binary file not shown.
BIN
Szamrendszer/obj/Debug/Szamrendszer.pdb
Normal file
BIN
Szamrendszer/obj/Debug/Szamrendszer.pdb
Normal file
Binary file not shown.
47
c-sharp.sln
47
c-sharp.sln
@@ -1,11 +1,7 @@
|
|||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 17
|
# Visual Studio Version 17
|
||||||
<<<<<<< HEAD
|
|
||||||
VisualStudioVersion = 17.1.32319.34
|
|
||||||
=======
|
|
||||||
VisualStudioVersion = 17.1.32228.430
|
VisualStudioVersion = 17.1.32228.430
|
||||||
>>>>>>> 1722b50d769c00ebff6c05ae1af878a62927b941
|
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "c-sharp", "c-sharp\c-sharp.csproj", "{A6876A09-53D2-47AF-A648-81BAD791D19D}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "c-sharp", "c-sharp\c-sharp.csproj", "{A6876A09-53D2-47AF-A648-81BAD791D19D}"
|
||||||
EndProject
|
EndProject
|
||||||
@@ -25,13 +21,23 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RegularExpressions", "Regul
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RekurzivHatvany", "RekurzivHatvany\RekurzivHatvany.csproj", "{DA385DD5-70CE-4750-BDF8-03915D70F5B9}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RekurzivHatvany", "RekurzivHatvany\RekurzivHatvany.csproj", "{DA385DD5-70CE-4750-BDF8-03915D70F5B9}"
|
||||||
EndProject
|
EndProject
|
||||||
<<<<<<< HEAD
|
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "kivetelek", "kivetelek\kivetelek.csproj", "{A695794C-2DEC-4F5C-8E6F-A087546DA47E}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "kivetelek", "kivetelek\kivetelek.csproj", "{A695794C-2DEC-4F5C-8E6F-A087546DA47E}"
|
||||||
=======
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Kor", "Kor\Kor.csproj", "{70C74504-C5C5-4992-A4FF-F00ADAAF7126}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Kor", "Kor\Kor.csproj", "{70C74504-C5C5-4992-A4FF-F00ADAAF7126}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Homerseklet_elemzes", "Homerseklet_elemzes\Homerseklet_elemzes.csproj", "{415D4176-81DD-47F6-B694-0B309EC17AEF}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Homerseklet_elemzes", "Homerseklet_elemzes\Homerseklet_elemzes.csproj", "{415D4176-81DD-47F6-B694-0B309EC17AEF}"
|
||||||
>>>>>>> 1722b50d769c00ebff6c05ae1af878a62927b941
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Sorozatok", "Sorozatok\Sorozatok.csproj", "{C04E7877-B737-4300-B572-6FB7385046F5}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Binaris", "Binaris\Binaris.csproj", "{B9D84424-1C01-4F48-A27E-301AF2992F18}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lotto", "Lotto\Lotto.csproj", "{8BA5DF46-C5C3-431C-8029-86668039577E}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Menu", "Menu\Menu.csproj", "{FD69BF8E-F676-4DB3-8751-244AFCB01531}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Kettes", "Kettes\Kettes.csproj", "{912C55E2-D84F-499F-AE54-B0F43CD4DDBD}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Szamrendszer", "Szamrendszer\Szamrendszer.csproj", "{40B43AE7-7888-46B5-B680-834508CA2BCD}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
@@ -75,12 +81,10 @@ Global
|
|||||||
{DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Release|Any CPU.Build.0 = Release|Any CPU
|
{DA385DD5-70CE-4750-BDF8-03915D70F5B9}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
<<<<<<< HEAD
|
|
||||||
{A695794C-2DEC-4F5C-8E6F-A087546DA47E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{A695794C-2DEC-4F5C-8E6F-A087546DA47E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{A695794C-2DEC-4F5C-8E6F-A087546DA47E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{A695794C-2DEC-4F5C-8E6F-A087546DA47E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{A695794C-2DEC-4F5C-8E6F-A087546DA47E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{A695794C-2DEC-4F5C-8E6F-A087546DA47E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{A695794C-2DEC-4F5C-8E6F-A087546DA47E}.Release|Any CPU.Build.0 = Release|Any CPU
|
{A695794C-2DEC-4F5C-8E6F-A087546DA47E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
=======
|
|
||||||
{70C74504-C5C5-4992-A4FF-F00ADAAF7126}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{70C74504-C5C5-4992-A4FF-F00ADAAF7126}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{70C74504-C5C5-4992-A4FF-F00ADAAF7126}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{70C74504-C5C5-4992-A4FF-F00ADAAF7126}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{70C74504-C5C5-4992-A4FF-F00ADAAF7126}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{70C74504-C5C5-4992-A4FF-F00ADAAF7126}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
@@ -89,7 +93,30 @@ Global
|
|||||||
{415D4176-81DD-47F6-B694-0B309EC17AEF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{415D4176-81DD-47F6-B694-0B309EC17AEF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{415D4176-81DD-47F6-B694-0B309EC17AEF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{415D4176-81DD-47F6-B694-0B309EC17AEF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{415D4176-81DD-47F6-B694-0B309EC17AEF}.Release|Any CPU.Build.0 = Release|Any CPU
|
{415D4176-81DD-47F6-B694-0B309EC17AEF}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
>>>>>>> 1722b50d769c00ebff6c05ae1af878a62927b941
|
{C04E7877-B737-4300-B572-6FB7385046F5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{C04E7877-B737-4300-B572-6FB7385046F5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{C04E7877-B737-4300-B572-6FB7385046F5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{C04E7877-B737-4300-B572-6FB7385046F5}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{B9D84424-1C01-4F48-A27E-301AF2992F18}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{B9D84424-1C01-4F48-A27E-301AF2992F18}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{B9D84424-1C01-4F48-A27E-301AF2992F18}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{B9D84424-1C01-4F48-A27E-301AF2992F18}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{8BA5DF46-C5C3-431C-8029-86668039577E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{8BA5DF46-C5C3-431C-8029-86668039577E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{8BA5DF46-C5C3-431C-8029-86668039577E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{8BA5DF46-C5C3-431C-8029-86668039577E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{FD69BF8E-F676-4DB3-8751-244AFCB01531}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{FD69BF8E-F676-4DB3-8751-244AFCB01531}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{FD69BF8E-F676-4DB3-8751-244AFCB01531}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{FD69BF8E-F676-4DB3-8751-244AFCB01531}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{912C55E2-D84F-499F-AE54-B0F43CD4DDBD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{912C55E2-D84F-499F-AE54-B0F43CD4DDBD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{912C55E2-D84F-499F-AE54-B0F43CD4DDBD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{912C55E2-D84F-499F-AE54-B0F43CD4DDBD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{40B43AE7-7888-46B5-B680-834508CA2BCD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{40B43AE7-7888-46B5-B680-834508CA2BCD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{40B43AE7-7888-46B5-B680-834508CA2BCD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{40B43AE7-7888-46B5-B680-834508CA2BCD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|||||||
Reference in New Issue
Block a user