Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class Greeting{
  2. public static void main(String[] args){
  3. Scanner input = new Scanner(System.in);
  4. String line;
  5. do{
  6. System.out.println("Type your name: ");
  7. line = input.nextLine();
  8. }
  9. while (line != May);
  10. System.out.println("Nice to meet you, " + line);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement