JAVA
java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// get text input
String text = sc.nextLine();
System.out.println("Hello: " + text);
//Write your name
//Write your name
//Write your name
System.out.println("you are my girlfriend: " + text);
System.out.print("yes and no: ");
System.out.println("yes");
System.out.println("write your name");
sc.close();
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run