Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Programm wurde um die Funktionalität von Modulo erweitert. #64

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions Taschenrechner/ConsoleView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ public void HoleEingabenFuerFortlaufendeBerechnung()
}
else
{
model.ErsteZahl = model.Resultat;
model.ZweiteZahl = Convert.ToDouble(eingabe);
model.ErsteZahl = Convert.ToDouble(HoleZahlVomBenutzer());
model.ZweiteZahl = model.Resultat;
Comment on lines +57 to +58
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hannesa7x Warum hast du dieses verändert? Hast du gesehen, dass in HoleNaechsteAktionVomBenutzer bereits HoleZahlVomBenutzer aufgerufen wurde?

}
}

Expand Down Expand Up @@ -94,7 +94,7 @@ private string HoleOperatorVomBenutzer()

do
{
Console.Write("Bitte gib die auszuführende Operation ein (+, -, /, *): ");
Console.Write("Bitte gib die auszuführende Operation ein (+, -, /, *, m): ");
operation = Console.ReadLine();
model.Operation = operation;

Expand Down Expand Up @@ -128,6 +128,10 @@ public void GibResultatAus()
Console.WriteLine("Das Produkt ist: {0}", model.Resultat);
break;

case "m":
Console.WriteLine("Der Rest von Zahl1 nach Division durch Zahl2 ist: {0}", model.Resultat);
break;

default:
Console.WriteLine("Du hast eine ungültige Auswahl der Operation getroffen.");
break;
Expand Down
10 changes: 10 additions & 0 deletions Taschenrechner/RechnerModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public string Operation
case "-":
case "/":
case "*":
case "m":
// Es wurde eine gültige Operation übergeben. Daher können wir
// den Fehler zurücksetzen ...
if (AktuellerFehler == Fehler.UngueltigeOperation)
Expand Down Expand Up @@ -121,6 +122,10 @@ public void Berechne()
Resultat = Multipliziere(ErsteZahl, ZweiteZahl);
break;

case "m":
Resultat = Modulo((int)ErsteZahl, (int)ZweiteZahl);
break;

default:
AktuellerFehler = Fehler.UngueltigeOperation;
break;
Expand Down Expand Up @@ -167,5 +172,10 @@ private double Multipliziere(double multiplikator, double multiplikand)
{
return multiplikator * multiplikand;
}

private int Modulo(int dividend, int divisor)
{
return dividend % divisor;
}
}
}