- Anpassungen der Übungsnummern
- Leichtes Bugfixing - Codeverschönerung [Noch nicht fertig!]main
parent
32ca0295c9
commit
9e8e030f30
|
|
@ -1,4 +1,4 @@
|
||||||
namespace Exercises_C_Sharp.XX_Methods
|
namespace Exercises_C_Sharp.E18_Methods
|
||||||
{
|
{
|
||||||
class Exercise_1
|
class Exercise_1
|
||||||
{
|
{
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace Exercises_C_Sharp.XX_Methods
|
namespace Exercises_C_Sharp.E18_Methods
|
||||||
{
|
{
|
||||||
class Exercise_2
|
class Exercise_2
|
||||||
{
|
{
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace Exercises_C_Sharp.XX_Methods
|
namespace Exercises_C_Sharp.E18_Methods
|
||||||
{
|
{
|
||||||
class Exercise_3
|
class Exercise_3
|
||||||
{
|
{
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace Exercises_C_Sharp.XX_Methods
|
namespace Exercises_C_Sharp.E18_Methods
|
||||||
{
|
{
|
||||||
class Exercise_4
|
class Exercise_4
|
||||||
{
|
{
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace Exercises_C_Sharp.XX_Methods
|
namespace Exercises_C_Sharp.E18_Methods
|
||||||
{
|
{
|
||||||
class Exercise_5
|
class Exercise_5
|
||||||
{
|
{
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
namespace Exercises_C_Sharp.XX_Methods
|
namespace Exercises_C_Sharp.E18_Methods
|
||||||
{
|
{
|
||||||
//In dieser Aufgabe wurde eine Art Hangman programmiert. Leider handelt es sich hierbei um sogenannten "Spaghetti-Code". Ihre Aufgabe ist nun, alle Elemente in dieser Aufgabe, um die "Code START/ENDE" steht, in Methoden auszulagern. Rufen Sie dann anstelle des Codes die Methode auf.
|
//In dieser Aufgabe wurde eine Art Hangman programmiert. Leider handelt es sich hierbei um sogenannten "Spaghetti-Code". Ihre Aufgabe ist nun, alle Elemente in dieser Aufgabe, um die "Code START/ENDE" steht, in Methoden auszulagern. Rufen Sie dann anstelle des Codes die Methode auf.
|
||||||
class Exercise_6
|
class Exercise_6
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Überladung
|
namespace Exercises_C_Sharp.E19_Überladung
|
||||||
{
|
{
|
||||||
class Exercise_1
|
class Exercise_1
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Überladung
|
namespace Exercises_C_Sharp.E19_Überladung
|
||||||
{
|
{
|
||||||
class Exercise_2
|
class Exercise_2
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Überladung
|
namespace Exercises_C_Sharp.E19_Überladung
|
||||||
{
|
{
|
||||||
class Exercise_3
|
class Exercise_3
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Überladung
|
namespace Exercises_C_Sharp.E19_Überladung
|
||||||
{
|
{
|
||||||
class Exercise_4
|
class Exercise_4
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Überladung
|
namespace Exercises_C_Sharp.E19_Überladung
|
||||||
{
|
{
|
||||||
class Exercise_5
|
class Exercise_5
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_1
|
class Exercise_1
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_10
|
class Exercise_10
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_11
|
class Exercise_11
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_12
|
class Exercise_12
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_13
|
class Exercise_13
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_2
|
class Exercise_2
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_3
|
class Exercise_3
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_4
|
class Exercise_4
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_5
|
class Exercise_5
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_6
|
class Exercise_6
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_7
|
class Exercise_7
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_8
|
class Exercise_8
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Lists
|
namespace Exercises_C_Sharp.E20_Lists
|
||||||
{
|
{
|
||||||
class Exercise_9
|
class Exercise_9
|
||||||
{
|
{
|
||||||
|
|
@ -2,12 +2,12 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Sorting
|
namespace Exercises_C_Sharp.E21_Sorting
|
||||||
{
|
{
|
||||||
class Exercise_1
|
class Exercise_1
|
||||||
{
|
{
|
||||||
//Sortieren Sie folgende Liste mit Hilfe des Bubble Sort
|
//Sortieren Sie folgende Liste mit Hilfe des Bubble Sort
|
||||||
public static List<int> NumberList = new List<int>(){ 5865, 2152, 9596, 1258, 6585, 3265, 4256, 9215, 3256, 8526, 1452, 6215, 1478, 9548, 7532, 1254, 6253, 4268, 8523, 9652, 4521, 8527, 5215, 4236, 7524, 1258, 1952, 6235, 6548, 7598, 9854, 8562, 3358, 5591, 6279, 3791, 7523, 9137, 8245, 6237, 8266, 1762, 2458, 6775, 6325, 6326, 8542, 6324, 5833};
|
public static List<int> NumberList = new(){ 5865, 2152, 9596, 1258, 6585, 3265, 4256, 9215, 3256, 8526, 1452, 6215, 1478, 9548, 7532, 1254, 6253, 4268, 8523, 9652, 4521, 8527, 5215, 4236, 7524, 1258, 1952, 6235, 6548, 7598, 9854, 8562, 3358, 5591, 6279, 3791, 7523, 9137, 8245, 6237, 8266, 1762, 2458, 6775, 6325, 6326, 8542, 6324, 5833};
|
||||||
|
|
||||||
public static void Start()
|
public static void Start()
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Sorting
|
namespace Exercises_C_Sharp.E21_Sorting
|
||||||
{
|
{
|
||||||
class Exercise_2
|
class Exercise_2
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Sorting
|
namespace Exercises_C_Sharp.E21_Sorting
|
||||||
{
|
{
|
||||||
class Exercise_3
|
class Exercise_3
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Sorting
|
namespace Exercises_C_Sharp.E21_Sorting
|
||||||
{
|
{
|
||||||
class Exercise_4
|
class Exercise_4
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Sorting
|
namespace Exercises_C_Sharp.E21_Sorting
|
||||||
{
|
{
|
||||||
class Exercise_5
|
class Exercise_5
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Sorting
|
namespace Exercises_C_Sharp.E21_Sorting
|
||||||
{
|
{
|
||||||
class Exercise_6
|
class Exercise_6
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Sorting
|
namespace Exercises_C_Sharp.E21_Sorting
|
||||||
{
|
{
|
||||||
class Exercise_7
|
class Exercise_7
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Sorting
|
namespace Exercises_C_Sharp.E21_Sorting
|
||||||
{
|
{
|
||||||
class Exercise_8
|
class Exercise_8
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Dictionary
|
namespace Exercises_C_Sharp.E22_Dictionary
|
||||||
{
|
{
|
||||||
class Exercise_1
|
class Exercise_1
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Dictionary
|
namespace Exercises_C_Sharp.E22_Dictionary
|
||||||
{
|
{
|
||||||
class Exercise_2
|
class Exercise_2
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Dictionary
|
namespace Exercises_C_Sharp.E22_Dictionary
|
||||||
{
|
{
|
||||||
class Exercise_3
|
class Exercise_3
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Dictionary
|
namespace Exercises_C_Sharp.E22_Dictionary
|
||||||
{
|
{
|
||||||
class Exercise_4
|
class Exercise_4
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using Microsoft.VisualBasic;
|
using Microsoft.VisualBasic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Dictionary
|
namespace Exercises_C_Sharp.E22_Dictionary
|
||||||
{
|
{
|
||||||
class Exercise_5
|
class Exercise_5
|
||||||
{
|
{
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_1
|
class Exercise_1
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_10
|
class Exercise_10
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_11
|
class Exercise_11
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_12
|
class Exercise_12
|
||||||
{
|
{
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_13
|
class Exercise_13
|
||||||
{
|
{
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_14
|
class Exercise_14
|
||||||
{
|
{
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_2
|
class Exercise_2
|
||||||
{
|
{
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_3
|
class Exercise_3
|
||||||
{
|
{
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_4
|
class Exercise_4
|
||||||
{
|
{
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_5
|
class Exercise_5
|
||||||
{
|
{
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_6
|
class Exercise_6
|
||||||
{
|
{
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_7
|
class Exercise_7
|
||||||
{
|
{
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_8
|
class Exercise_8
|
||||||
{
|
{
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Enumns
|
namespace Exercises_C_Sharp.E24_Enumns
|
||||||
{
|
{
|
||||||
class Exercise_9
|
class Exercise_9
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Tuple
|
namespace Exercises_C_Sharp.E25_Tuple
|
||||||
{
|
{
|
||||||
class Exercise_1
|
class Exercise_1
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Tuple
|
namespace Exercises_C_Sharp.E25_Tuple
|
||||||
{
|
{
|
||||||
class Exercise_2
|
class Exercise_2
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Tuple
|
namespace Exercises_C_Sharp.E25_Tuple
|
||||||
{
|
{
|
||||||
class Exercise_3
|
class Exercise_3
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Tuple
|
namespace Exercises_C_Sharp.E25_Tuple
|
||||||
{
|
{
|
||||||
class Exercise_4
|
class Exercise_4
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Tuple
|
namespace Exercises_C_Sharp.E25_Tuple
|
||||||
{
|
{
|
||||||
class Exercise_5
|
class Exercise_5
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Tuple
|
namespace Exercises_C_Sharp.E25_Tuple
|
||||||
{
|
{
|
||||||
class Exercise_6
|
class Exercise_6
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Tuple
|
namespace Exercises_C_Sharp.E25_Tuple
|
||||||
{
|
{
|
||||||
class Exercise_7
|
class Exercise_7
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Tuple
|
namespace Exercises_C_Sharp.E25_Tuple
|
||||||
{
|
{
|
||||||
class Exercise_8
|
class Exercise_8
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Tuple
|
namespace Exercises_C_Sharp.E25_Tuple
|
||||||
{
|
{
|
||||||
class Exercise_9
|
class Exercise_9
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Mehrdimensionale_Arrays
|
namespace Exercises_C_Sharp.E26_Mehrdimensionale_Arrays
|
||||||
{
|
{
|
||||||
class Exercise_1
|
class Exercise_1
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Mehrdimensionale_Arrays
|
namespace Exercises_C_Sharp.E26_Mehrdimensionale_Arrays
|
||||||
{
|
{
|
||||||
class Exercise_2
|
class Exercise_2
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Mehrdimensionale_Arrays
|
namespace Exercises_C_Sharp.E26_Mehrdimensionale_Arrays
|
||||||
{
|
{
|
||||||
class Exercise_3
|
class Exercise_3
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Mehrdimensionale_Arrays
|
namespace Exercises_C_Sharp.E26_Mehrdimensionale_Arrays
|
||||||
{
|
{
|
||||||
class Exercise_4
|
class Exercise_4
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Mehrdimensionale_Arrays
|
namespace Exercises_C_Sharp.E26_Mehrdimensionale_Arrays
|
||||||
{
|
{
|
||||||
class Exercise_5
|
class Exercise_5
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Mehrdimensionale_Arrays
|
namespace Exercises_C_Sharp.E26_Mehrdimensionale_Arrays
|
||||||
{
|
{
|
||||||
class Exercise_6
|
class Exercise_6
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Mehrdimensionale_Arrays
|
namespace Exercises_C_Sharp.E26_Mehrdimensionale_Arrays
|
||||||
{
|
{
|
||||||
class Exercise_7
|
class Exercise_7
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Jagged_Arrays
|
namespace Exercises_C_Sharp.E27_Jagged_Arrays
|
||||||
{
|
{
|
||||||
class Exercise_1
|
class Exercise_1
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Jagged_Arrays
|
namespace Exercises_C_Sharp.E27_Jagged_Arrays
|
||||||
{
|
{
|
||||||
class Exercise_2
|
class Exercise_2
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Jagged_Arrays
|
namespace Exercises_C_Sharp.E27_Jagged_Arrays
|
||||||
{
|
{
|
||||||
class Exercise_3
|
class Exercise_3
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Jagged_Arrays
|
namespace Exercises_C_Sharp.E27_Jagged_Arrays
|
||||||
{
|
{
|
||||||
class Exercise_4
|
class Exercise_4
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Classes
|
namespace Exercises_C_Sharp.E28_Classes
|
||||||
{
|
{
|
||||||
class Exercise_1
|
class Exercise_1
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Classes
|
namespace Exercises_C_Sharp.E28_Classes
|
||||||
{
|
{
|
||||||
class Exercise_2
|
class Exercise_2
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Classes
|
namespace Exercises_C_Sharp.E28_Classes
|
||||||
{
|
{
|
||||||
class Exercise_3
|
class Exercise_3
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Classes
|
namespace Exercises_C_Sharp.E28_Classes
|
||||||
{
|
{
|
||||||
class Exercise_4
|
class Exercise_4
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Classes
|
namespace Exercises_C_Sharp.E28_Classes
|
||||||
{
|
{
|
||||||
class Exercise_5
|
class Exercise_5
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Classes
|
namespace Exercises_C_Sharp.E28_Classes
|
||||||
{
|
{
|
||||||
class Exercise_6
|
class Exercise_6
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Classes
|
namespace Exercises_C_Sharp.E28_Classes
|
||||||
{
|
{
|
||||||
class Exercise_7
|
class Exercise_7
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Konstruktoren
|
namespace Exercises_C_Sharp.E29_Konstruktoren
|
||||||
{
|
{
|
||||||
class Exercise_1
|
class Exercise_1
|
||||||
{
|
{
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Konstruktoren
|
namespace Exercises_C_Sharp.E29_Konstruktoren
|
||||||
{
|
{
|
||||||
class Exercise_2
|
class Exercise_2
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Konstruktoren
|
namespace Exercises_C_Sharp.E29_Konstruktoren
|
||||||
{
|
{
|
||||||
class Exercise_3
|
class Exercise_3
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Konstruktoren
|
namespace Exercises_C_Sharp.E29_Konstruktoren
|
||||||
{
|
{
|
||||||
class Exercise_4
|
class Exercise_4
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Konstruktoren
|
namespace Exercises_C_Sharp.E29_Konstruktoren
|
||||||
{
|
{
|
||||||
class Exercise_5
|
class Exercise_5
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Konstruktoren
|
namespace Exercises_C_Sharp.E29_Konstruktoren
|
||||||
{
|
{
|
||||||
class Exercise_6
|
class Exercise_6
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Konstruktoren
|
namespace Exercises_C_Sharp.E29_Konstruktoren
|
||||||
{
|
{
|
||||||
class Exercise_7
|
class Exercise_7
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Klassendiagramm
|
namespace Exercises_C_Sharp.E30_Klassendiagramm
|
||||||
{
|
{
|
||||||
//Übertragen Sie jede Klasse in ein Objekt eines Klassendiagramms
|
//Übertragen Sie jede Klasse in ein Objekt eines Klassendiagramms
|
||||||
class Messbecher
|
class Messbecher
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Exceptions
|
namespace Exercises_C_Sharp.E32_Exceptions
|
||||||
{
|
{
|
||||||
class Exercise_1
|
class Exercise_1
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Exceptions
|
namespace Exercises_C_Sharp.E32_Exceptions
|
||||||
{
|
{
|
||||||
class Exercise_2
|
class Exercise_2
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Exceptions
|
namespace Exercises_C_Sharp.E32_Exceptions
|
||||||
{
|
{
|
||||||
class Exercise_3
|
class Exercise_3
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Exceptions
|
namespace Exercises_C_Sharp.E32_Exceptions
|
||||||
{
|
{
|
||||||
class Exercise_4
|
class Exercise_4
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Exceptions
|
namespace Exercises_C_Sharp.E32_Exceptions
|
||||||
{
|
{
|
||||||
class Exercise_5
|
class Exercise_5
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Exceptions
|
namespace Exercises_C_Sharp.E32_Exceptions
|
||||||
{
|
{
|
||||||
class Exercise_6
|
class Exercise_6
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Exceptions
|
namespace Exercises_C_Sharp.E32_Exceptions
|
||||||
{
|
{
|
||||||
class Exercise_7
|
class Exercise_7
|
||||||
{
|
{
|
||||||
|
|
@ -2,7 +2,7 @@ using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Exceptions
|
namespace Exercises_C_Sharp.E32_Exceptions
|
||||||
{
|
{
|
||||||
class Exercise_8
|
class Exercise_8
|
||||||
{
|
{
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Exercises_C_Sharp.XX_Exceptions
|
namespace Exercises_C_Sharp.E32_Exceptions
|
||||||
{
|
{
|
||||||
class Exercise_9
|
class Exercise_9
|
||||||
{
|
{
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue