Sitzung: Jeden Freitag in der Vorlesungszeit ab 16 Uhr c. t. im MAR 0.005. In der vorlesungsfreien Zeit unregelmäßig (Jemensch da?). Macht mit!

Javakurs/Übungsaufgaben/Crack the Password/Musterloesung

< Javakurs‎ | Übungsaufgaben‎ | Crack the Password
Version vom 18. März 2011, 11:36 Uhr von Mario (Diskussion | Beiträge) (On The fly lösung ...)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
46 is the key!
56 is the key!
70 is the key!
82 is the key!

Code:

public class CrackPWD{

	public static boolean checkPasscode(int H4X0R){
		// returns true if passcode is valid
		boolean result = false;
		for(int E1337=42; E1337<=(52^(0x6c)); E1337+=(3<<(14%6))){
			if(result=((++E1337|E1337+(2>>>1))^(1+H4X0R))==(123456789&0))
				break;
		}
		return result;
	}

	public static void main(String[] arguments) {
		for(int i = -99999; i < 99999; i++)
			if(checkPasscode(i)) {
				System.out.println(i+" is the key!");
			}
	}
}