Zahlen hinzugefügt

main
David Milivojevic 2024-10-07 09:54:01 +02:00
parent 3c328ac615
commit 9245a980de
1 changed files with 43 additions and 0 deletions

43
Zahlen 100644
View File

@ -0,0 +1,43 @@
package parkhaus;
public class Zahlen {
private String VISA;
public Zahlen(String VISA) {
this.VISA=VISA;
}
public String getVISA(){
return VISA;
}
public int PZ() {
int pz=0;
int gewichtung=1;
int quersumme=0;
for(int i=16;i>=0;i-- ) {
char ch=VISA.charAt(i);
quersumme+=((int)ch)*gewichtung;
if(gewichtung%2==0) {
gewichtung--;
}if(gewichtung%2!=0){
gewichtung++;
}
}
pz=10-(quersumme%10);
return pz;
}
public boolean bezahlt() throws InterruptedException {
System.out.println("Legen Sie die Karte ein.");
System.out.println(".");
Thread.sleep(1000);
System.out.println("..");
Thread.sleep(1000);
System.out.println("...");
Thread.sleep(1000);
System.out.println("....");
Thread.sleep(1000);
System.out.println(".....");
Thread.sleep(1000);
System.out.println("Kauf abgeschlossen Sie können die Karte nun entfernen.");
return true;
}
}