J
Java-Gast
Gast
Wie muss ich vorgehen, wenn ich ein Programm schreiben will das Prozentrechnung kann?
Also mit Grundwert,Kapital, Prozentsatz, Prozentwert...
Also mit Grundwert,Kapital, Prozentsatz, Prozentwert...
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
class Prozentrechnen{
double kapital, zins, prozentsatz;
public void setKapital(int kapital){
this.kapital=kapital;
}
//und so weiter
}
(Kapital/100=1Prozent, 1Prozent*Prozentsatz=Zins usw).
c=Math.sqrt(a*a+b*b);