Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class OlaMundo{
- public static void main(String[] args){
- String nome = "michael";
- int num = 2;
- int i=0;
- while (i<5){
- System.out.println(i);
- i++;
- }
- System.out.println("Nome: " +nome);
- System.out.println("Num: " +num*2);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement