35.4k views
5 votes
Write a java program that asks the student for his name and the month in which he/she was born. Students are then divided into sections, according to the following: Section A: Name starts between A - E Born between months 1 - 6 Section B: Name starts between F - L Born between months 1 - 6 Section C: Name starts between M - Q Born between months 7 - 12 Section D: Name starts between R - Z Born between months 7 - 12

User No Id
by
8.0k points

1 Answer

4 votes

Answer:

import java.util.Scanner;

public class SectionAssignment {

public static void main(String[] args) {

// Create a scanner object to read input

Scanner input = new Scanner(System.in);

// Prompt the student for their name

System.out.print("Enter your name: ");

String name = input.nextLine();

// Prompt the student for the month they were born

System.out.print("Enter the month you were born (1-12): ");

int month = input.nextInt();

// Assign the student to a section based on their name and birth month

String section = "";

if (name.charAt(0) >= 'A' && name.charAt(0) <= 'E' && month >= 1 && month <= 6) {

section = "A";

} else if (name.charAt(0) >= 'F' && name.charAt(0) <= 'L' && month >= 1 && month <= 6) {

section = "B";

} else if (name.charAt(0) >= 'M' && name.charAt(0) <= 'Q' && month >= 7 && month <= 12) {

section = "C";

} else if (name.charAt(0) >= 'R' && name.charAt(0) <= 'Z' && month >= 7 && month <= 12) {

section = "D";

} else {

section = "Invalid";

}

// Print the student's section assignment

System.out.println("Your section is: " + section);

}

}

User Rahul Dess
by
7.0k points