Skip to content

Instantly share code, notes, and snippets.

@lusy
Created June 3, 2022 09:56
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/bd8845a9bf09693a429a1bb321447b8f to your computer and use it in GitHub Desktop.
Save lusy/bd8845a9bf09693a429a1bb321447b8f to your computer and use it in GitHub Desktop.
public class BTables {
/**
* 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 boolean evaluateBs(boolean x1, boolean x2, boolean x3){
if( x1 == true && x2 == false ){
return true;
}else if ( x1 == false && x2 == true && 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