main(String[] args) {
String nome;
int eta;
System.out.println("Ciao, qual è il tuo nome? ");
Scanner input=new Scanner(System.in);
nome=input.nextLine();
System.out.println("Ciao "+nome+". Quanti anni hai? ");
eta=input.nextInt();
System.out.println("Ciao "+eta+". Hai "+eta+" anni ");
if(eta>=18)
{
System.out.println("Sei maggiorenne");
}
else
{
System.out.println("Sei minorenne");
}
}
}
You can surround your code with three backtics () to format your code. Like this class A { public static void main(...) { // do something } }
Обсуждают сегодня