Untitled

Anonymous
plain_text
09/02/2023 8:58 AM
292 B
16
Indexable
import java.util.Scanner;

Scanner sc = new Scanner(System.in);

String name = sc.nextLine();

char gender = sc.next().charAt(0);

int age = sc.nextInt();
long mobileNo = sc.nextLong();
double average = sc.nextDouble();
Editor is loading...