Zahlen gelöscht
parent
0431873940
commit
eb055cb491
43
Zahlen
43
Zahlen
|
@ -1,43 +0,0 @@
|
||||||
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;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue