aludroiu / Java-exercice

0 stars 0 forks source link

Java conditionals and control flow #5

Open aludroiu opened 1 year ago

aludroiu commented 1 year ago

https://www.codecademy.com/courses/learn-java/lessons/java-conditionals-and-control-flow/ Specific conditional statements have the following behavior:

if-then: code block runs if condition is true if-then-else: one block runs if conditions is true another block runs if condition is false if-then-else chained: same as if-then but an arbitrary number of conditions switch: switch block runs if condition value matches case value

aludroiu commented 1 year ago

https://github.com/aludroiu/Java-exercice/tree/master/src/Conditionals/workflows

aludroiu commented 1 year ago

Image Image Image Image Image

aludroiu commented 1 year ago

Image