24 lines
566 B
C#
24 lines
566 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Exercises_C_Sharp.E03_Strings
|
|
{
|
|
class Exercise_5
|
|
{
|
|
public static void Start()
|
|
{
|
|
//Geben Sie von folgenden Werten den vierten Buchstaben aus:
|
|
string firstValue = "Brauerei";
|
|
string secondValue = "Überbau";
|
|
string thirdValue = "keinerlei";
|
|
string fourthValue = "Fairness";
|
|
|
|
|
|
//Code START
|
|
firstValue = secondValue = thirdValue = fourthValue;
|
|
//Code ENDE
|
|
|
|
}
|
|
}
|
|
} |