Skip to content
Snippets Groups Projects
Commit b1f17584 authored by Uwe Wienkop's avatar Uwe Wienkop
Browse files

Woche 1

parent fb8bb297
No related branches found
No related tags found
No related merge requests found
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>_01_Hallo</RootNamespace>
</PropertyGroup>
</Project>
using System;
namespace _01_Hallo
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello Uwe!");
Console.WriteLine(Math.Sqrt( 3*3+4*4));
}
}
}
...@@ -6,7 +6,7 @@ namespace _01_Pythagoras ...@@ -6,7 +6,7 @@ namespace _01_Pythagoras
{ {
static void Main(string[] args) static void Main(string[] args)
{ {
double a, b; double a, b; // Variablen vom Typ Gleitkommazahl
Console.WriteLine("Pythagoras"); Console.WriteLine("Pythagoras");
Console.Write("Länge der Seite a: "); Console.Write("Länge der Seite a: ");
......
...@@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00 ...@@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16 # Visual Studio Version 16
VisualStudioVersion = 16.0.31702.278 VisualStudioVersion = 16.0.31702.278
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "01 Pythagoras", "01 Pythagoras\01 Pythagoras.csproj", "{8DC7B6AA-65FE-46EA-B91C-245660F723E8}" Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "01 Pythagoras", "01 Pythagoras\01 Pythagoras.csproj", "{8DC7B6AA-65FE-46EA-B91C-245660F723E8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "01 Hallo", "01 Hallo\01 Hallo.csproj", "{DF891CC9-9677-471D-BE07-0B9C679534AB}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution
...@@ -15,6 +17,10 @@ Global ...@@ -15,6 +17,10 @@ Global
{8DC7B6AA-65FE-46EA-B91C-245660F723E8}.Debug|Any CPU.Build.0 = Debug|Any CPU {8DC7B6AA-65FE-46EA-B91C-245660F723E8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8DC7B6AA-65FE-46EA-B91C-245660F723E8}.Release|Any CPU.ActiveCfg = Release|Any CPU {8DC7B6AA-65FE-46EA-B91C-245660F723E8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8DC7B6AA-65FE-46EA-B91C-245660F723E8}.Release|Any CPU.Build.0 = Release|Any CPU {8DC7B6AA-65FE-46EA-B91C-245660F723E8}.Release|Any CPU.Build.0 = Release|Any CPU
{DF891CC9-9677-471D-BE07-0B9C679534AB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DF891CC9-9677-471D-BE07-0B9C679534AB}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DF891CC9-9677-471D-BE07-0B9C679534AB}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DF891CC9-9677-471D-BE07-0B9C679534AB}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection EndGlobalSection
GlobalSection(SolutionProperties) = preSolution GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE HideSolutionNode = FALSE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment