Exercises_C_Sharp/Exercises/E01_Einleitung/Exercise_2.cs

23 lines
686 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.IO;
using System.Collections.Generic;
namespace Exercises_C_Sharp.E01_Einleitung
{
class Exercise_2
{
public static void Start()
{
//Geben Sie diese nacheinander die Lösungen folgender Gleichungen jeweils in eigener Zeile in der Konsole aus:
//24 + 14 34 / 12 * 2 % 4
//23847 + 3333 / 34 * 22 12 + 2343234 % 6
//123.34 / 2344.3 12035.55 / 4.9 * 123.2
//948475.23423 * 7 23433.833 % 22.66 + 34.3 * 4
//2343 3434.2 * 333.33 3333.88 / 77777.1 + 12.33 % 0.3336
//Code START
//Code ENDE
}
}
}