Name and age
PLEASE help me ill soon rip my hair of. I made this work then i broke it and now i cant pick up what I did (gaaaaah). HOW do i make this work????????? ââââââââââ String name; System.out.println(âEnter name:â); name = scanner.nextLine(); ââââââââââ ISSUE: FALSE: System.out.println(ânot a valid name, try again: â) Loop until valid input^ Valid option (only string nothing else) it shall print: TRUE: System.out.println(âwelcome â + name); result of valid input^ then continue: ââââââââââ Int age; System.out.println(âEnter age:â); age = scanner.nextInt(); TRUE: System.out.println(âYour age is â + age); ââââââââââ ONLY VALID AGE INPUT: 0-120 (int)otherwise loop until valid input.