Add project files.
This commit is contained in:
parent
a657463e9b
commit
4a9624fcc1
25
TeglalapObjektum.sln
Normal file
25
TeglalapObjektum.sln
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 16
|
||||||
|
VisualStudioVersion = 16.0.32802.440
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TeglalapObjektum", "TeglalapObjektum\TeglalapObjektum.csproj", "{F1DC4F69-7E4F-474D-870E-A1279D188461}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{F1DC4F69-7E4F-474D-870E-A1279D188461}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{F1DC4F69-7E4F-474D-870E-A1279D188461}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{F1DC4F69-7E4F-474D-870E-A1279D188461}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{F1DC4F69-7E4F-474D-870E-A1279D188461}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {7161D1AB-BE37-41F7-90E8-5DC0F19DDBA3}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
28
TeglalapObjektum/Program.cs
Normal file
28
TeglalapObjektum/Program.cs
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace TeglalapObjektum
|
||||||
|
{
|
||||||
|
class Program
|
||||||
|
{
|
||||||
|
static void Main(string[] args)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Tégalap objektumok létrehozása:");
|
||||||
|
Teglalap t1 = new Teglalap(); //Példányosítás t1
|
||||||
|
Teglalap t2 = new Teglalap(); //Példányosítás t2
|
||||||
|
t1.aoldal = 7.5;
|
||||||
|
t1.boldal = 20.9;
|
||||||
|
t2.aoldal = 100;
|
||||||
|
t2.boldal = 24.7;
|
||||||
|
Console.WriteLine($"A t1 téglalap a: {t1.aoldal}, b: {t1.boldal} T: {t1.terulet()}"); //fontos, hogy ott legyen a zárójel, mert függvény
|
||||||
|
Console.WriteLine($"A t2 téglalap a: {t2.aoldal}, b: {t2.boldal} T: {t2.terulet()}");
|
||||||
|
|
||||||
|
Teglalap t3 = new Teglalap();
|
||||||
|
t3.aoldal = 3;
|
||||||
|
t3.boldal = 120; //nem csakadatokat tudok belerakni egy objektumba
|
||||||
|
Console.WriteLine("t3 adatai:");
|
||||||
|
t3.kiir(); //itt már a téglalap tudja magát kiírni, ennek mintájára már a többiis tudja
|
||||||
|
Console.WriteLine("t1 adatai:");
|
||||||
|
t1.kiir(); //itt már a téglalap tudja magát kiírni, ennek mintájára már a többiis tudja
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
25
TeglalapObjektum/Teglalap.cs
Normal file
25
TeglalapObjektum/Teglalap.cs
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace TeglalapObjektum
|
||||||
|
{
|
||||||
|
class Teglalap
|
||||||
|
{
|
||||||
|
public double aoldal;
|
||||||
|
public double boldal;
|
||||||
|
|
||||||
|
public double terulet() //eljárás metódus, nincs itt a static , ha példányaim vannak nem kell static szó, ez függvény, doublet ad vissza, void szónál nem ad vissza értéket
|
||||||
|
|
||||||
|
{
|
||||||
|
return aoldal * boldal;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void kiir() //minden téglalap saját maga írja ki
|
||||||
|
{
|
||||||
|
Console.WriteLine($"a: {aoldal}, b: {boldal}, T: {terulet():F3}"); //itt már nincs t.1 mert sajátját írja ki; a terület adatját 3 tizedesre írjam ki; :F3; előny hogy csak itt kell módosítanom
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
8
TeglalapObjektum/TeglalapObjektum.csproj
Normal file
8
TeglalapObjektum/TeglalapObjektum.csproj
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net5.0</TargetFramework>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
Loading…
Reference in New Issue
Block a user