Skip to content

Instantly share code, notes, and snippets.

@lusy
Created June 3, 2022 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lusy/1244a86cf42dea57bfdd91bcbbd5a192 to your computer and use it in GitHub Desktop.
Save lusy/1244a86cf42dea57bfdd91bcbbd5a192 to your computer and use it in GitHub Desktop.
public class BTables1 {
/**
* Die gibt den Wahrheitswert gemäß der vorgegeben Wahrheitstabelle (siehe Beschreibung) zurück.
*
* @param x1 Boolescher Wert
* @param x2 Boolescher Wert
* @param x3 Boolescher Wert
* @return Das Ergebnis gemäß Wahrheitstabelle
*/
public static void main(String[] args){
System.out.println(evaluateBs(true,true,false));
}
public static boolean evaluateBs(boolean x1, boolean x2, boolean x3){
if (x1 == false && x2 == true && x3 == true){
return true;
}else if (x1 == true && x2 == false && x3 == false){
return true;
}else if (x1 == true && x2 == false && x3 == true){
return true;
}else {
return false;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment