15 lines
411 B
C#
15 lines
411 B
C#
namespace Exercises_C_Sharp.E08_If
|
|
{
|
|
class Exercise_6
|
|
{
|
|
public static void Start()
|
|
{
|
|
//Geben Sie "Es ist richtig!" auf der Konsole aus, wenn die Aussage richtig ist und "Es ist falsch!" wenn die Aussage falsch ist.
|
|
|
|
if(123 * 12 / 85 % 88 < 123 * 13 / 86 % 77)
|
|
//Code START
|
|
Console.WriteLine();
|
|
//Code ENDE
|
|
}
|
|
}
|
|
} |