Guest User

Untitled

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