import [Link].
*;
class School {
public static void main(String args[]) {
Scanner in = new Scanner([Link]);
int ch;
[Link]("Enter your choice to know about school ");
[Link]("*****************SUBMENU****************");
[Link]("*****************[Link]****************");
[Link]("*****************[Link]****************");
[Link]("*****************[Link]****************");
[Link]("*****************[Link] CURRICULAR****************");
ch = [Link]();
switch (ch) {
case 1:
[Link]("The present strength of the school is 2000 out
of which 1100" +
" are boys and 900 are girls");
[Link]("There are 110 staff members including non-
teaching staff also");
[Link]("There are 80 teachers and 30 non-teaching
staff");
[Link]("**************************************************************"
);
[Link]("Admission charge for Nursery to UKG is
Rs.6540");
[Link]("Monthly fees for Nursery to UKG is Rs.500");
[Link]("*************************************************************")
;
[Link]("Admission charges for class 1 to 10 is
Rs.8000");
[Link]("Monthly fees for 1 to 6 is Rs.600");
[Link]("Monthly fees for class 7 to 10 is Rs.750");
[Link]("*************************************************************")
;
[Link]("Admission charges for class 11 and 12 is
Rs.10000");
[Link]("Monthly fee for class 11 and 12 is Rs.950");
[Link]("*************************************************************")
;
[Link]("As mentioned above, it was established by late
[Link]." +
" The Dugals are highly respected in the region
");
[Link]("The schools began as a preparation school
catering to the" +
" needs of its immediate surrounding");
[Link]("It received its affiliation to I.C.S.E Board at
Delhi in March 1979");
[Link]("The basic motto of the school is …..LIVE TO
LOVE AND SERVE");
[Link]("To begin with, there were only 25 students and
2 teachers." +
" The first principal of the school was Mrs.
Versa Chand");
break;
case 2:
[Link]("There are various facilities provided by the
school");
[Link]("Science labs are equipped with modern
equipment");
[Link]("There are 50 computers with LAN connection and
laptops are" +
" also provided for 2+ students");
[Link]("PlayStation for all stations provided");
[Link]("Libraries for juniors, seniors, and +2 with
interesting drama," +
" scientific books available to all");
[Link]("The library is a storehouse of information");
break;
case 3:
[Link]("There are many sports activities like football,
cricket, volleyball," +
" basketball");
[Link]("Indoor games like chess, carom");
break;
case 4:
[Link]("Extra-curricular activities");
[Link]("Quiz, Elocution, Essay, Dance, Drama, Song");
break;
default:
[Link]("Wrong choice");
}
int ch1, bs;
double da = 0.0, hra = 0.0, pf = 0.0, gross, net;
[Link]("%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%");
[Link]("%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%");
[Link]("%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%");
[Link]("Enter your choice(1-2)");
ch1 = [Link]();
switch (ch1) {
case 1:
[Link]("Enter the basic pay");
bs = [Link]();
hra = 0.5 * bs;
da = 0.75 * bs;
pf = 0.25 * bs;
gross = hra + da + bs;
net = gross - pf;
[Link]("The gross pay of the teachers is =" + gross);
[Link]("The net salary of the primary teacher is =" +
net);
break;
case 2:
[Link]("Enter the basic pay");
bs = [Link]();
hra = 1.5 * bs;
da = 1.75 * bs;
pf = 0.25 * bs;
gross = bs + hra + da;
net = gross - pf;
[Link]("The gross pay of the teacher is =" + gross);
[Link]("The net pay of the primary teacher is =" +
net);
break;
default:
[Link]("Wrong choice");
}
}
}