Advertisement
Guest User

Untitled

a guest
Jun 21st, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class TesteIf2 {
  2. public static void main(String[] args) {
  3. int i = 1;
  4. if(i == 1){
  5. System.out.println(1);
  6. }
  7. if(i == 2) {
  8. System.out.println(2);
  9. }
  10. if(i == 3) {
  11. System.out.println(3);
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement