Skip to content

Commit

Permalink
angefangen
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur Leon Dyga committed Jan 19, 2023
1 parent b91ed04 commit f246780
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 2 deletions.
11 changes: 11 additions & 0 deletions 91DieterDieter/91DieterDieter.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>_91DieterDieter</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

</Project>
15 changes: 15 additions & 0 deletions 91DieterDieter/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
double Schirttgröße;
double Abstand;
double Resistor;

Console.WriteLine("Geben sie die scrhrittgröße an");
Schirttgröße = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Geben sie den Abstand an");
Abstand = Convert.ToDouble(Console.ReadLine());
double länge = Abstand / Schirttgröße;
while (länge > 0)
{
--länge;
Resistor = 0.017 * (länge / 1.5);
Console.WriteLine(Resistor);
}
1 change: 0 additions & 1 deletion 9HotelAuftrag/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,6 @@
Console.WriteLine();
Console.WriteLine(Hotel_Rechner1);
Console.WriteLine(Hotel_Rechner2);
Console.WriteLine(Hotel_Rechner3);
Test_Abfrage = true;
Console.Clear();
}
Expand Down
8 changes: 7 additions & 1 deletion GrundlagenCSharp.sln
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "7WochenTage", "7WochenTage\
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "8Array", "8Array\8Array.csproj", "{367A4505-1F96-47EE-B78F-A7828270BB51}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "9HotelAuftrag", "9HotelAuftrag\9HotelAuftrag.csproj", "{4FBB4308-0652-4BEC-8FCE-51A2A3BE11F9}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "9HotelAuftrag", "9HotelAuftrag\9HotelAuftrag.csproj", "{4FBB4308-0652-4BEC-8FCE-51A2A3BE11F9}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "91DieterDieter", "91DieterDieter\91DieterDieter.csproj", "{1FBCE2D3-1B78-44C7-AE74-8AE5D74F7840}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down Expand Up @@ -63,6 +65,10 @@ Global
{4FBB4308-0652-4BEC-8FCE-51A2A3BE11F9}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4FBB4308-0652-4BEC-8FCE-51A2A3BE11F9}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4FBB4308-0652-4BEC-8FCE-51A2A3BE11F9}.Release|Any CPU.Build.0 = Release|Any CPU
{1FBCE2D3-1B78-44C7-AE74-8AE5D74F7840}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1FBCE2D3-1B78-44C7-AE74-8AE5D74F7840}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1FBCE2D3-1B78-44C7-AE74-8AE5D74F7840}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1FBCE2D3-1B78-44C7-AE74-8AE5D74F7840}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit f246780

Please sign in to comment.