Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class Main {
  2. public static void main(String[] args) {
  3. int nascita= 2000;
  4. int annoC= 2019;
  5. int age =nascita -annoC;
  6. String Messaggio;
  7.  
  8. if(age<30){
  9. Messaggio = "ciao";
  10. }
  11. else{
  12. Messaggio = "Buongiorno";
  13. }
  14.  
  15. System.out.println(Messaggio);
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement