You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
863 B
C#
33 lines
863 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Übung_Modulorechner
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
int zahl1, zahl2, ergebnis, rest;
|
|
|
|
Console.WriteLine("Modulo-Rechner");
|
|
//Eingabe
|
|
|
|
Console.Write("Geben Sie die erste Zahl ein: ");
|
|
zahl1 = Convert.ToInt32(Console.ReadLine());
|
|
Console.Write("Geben Sie die zweite Zahl ein: ");
|
|
zahl2 = Convert.ToInt32(Console.ReadLine());
|
|
|
|
//Berechnungen
|
|
ergebnis = zahl1 / zahl2;
|
|
rest = zahl1 % zahl2;
|
|
|
|
//Ausgabe
|
|
Console.WriteLine("Ergebnis: " + ergebnis + " Rest: " + rest);
|
|
Console.ReadLine();
|
|
}
|
|
}
|
|
}
|