23 lines
623 B
C#
23 lines
623 B
C#
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Exercises_C_Sharp.E01_Einleitung
|
|
{
|
|
class Exercise_4
|
|
{
|
|
public static void Start()
|
|
{
|
|
//Geben Sie die Ergebnise der booleschen Werte nacheinander in eigener Zeile in der Konsole aus:
|
|
//8374 + 1234 > 10522 - 2256
|
|
//123 * 123 != 100 + 12523
|
|
//756.055 / 299.25 >= 25 * 22
|
|
//123 + 2562 / 4 <= 3874 + 56856
|
|
//1234 % 4 * 526 / 25685 == 9374 + 85 * 36369 / 40252 % 256
|
|
|
|
//Code START
|
|
|
|
//Code ENDE
|
|
}
|
|
}
|
|
} |