Write a program that lets you know if you can have a key or not, based on your role at the school.
First ask for the user’s role at the school. They can be a student, administrator, or a teacher. (And remember that capitalization is important! ‘Student’ is not the same as ‘student’.)
Example 1: Administrator or Teacher
For example, if this was the input:
Are you an administrator, teacher, or student?: teacher
This should be the output:
Administrators and teachers get keys!
Example 2: Student
And if this was the input:
Are you an administrator, teacher, or student?: student
This should be the output:
Students do not get keys!
(Note: You should also be able to handle a situation where the user enters a value other than administrator, teacher or student and tell them they must be one of the three choices!)
Example 3: Other
If they input anything else:
Are you an administrator, teacher, or student?: secretary
This should be the output:
You can only be an administrator, teacher, or student!
N1
a = int(input())
if (a >= 7)&(a <= 10):
print(‘начальная’)
if (a >= 11)&(a <= 15):
print(‘начальная’)
if (a >= 16)&(a <= 17):
print(‘начальная’)
N2
a = int(input())
if a < 0:
print(-1)
if a == 0:
print(0)
if a > 0:
print(1)
N3
a = [‘неудовлетворительно’,’удовлетворительно’,’хорошо’,’отлично’]
b = int(input())
print(a[b-2])
Ответ:
На Java:
1)
int x = new Scanner(System.in).nextInt(); //Вводим возраст
//7-10 — начальная школа
//11-15 — средняя школа
//16-17 — старшая школа
if (x >= 7 && x <= 10)
System.out.println(«Начальная»)
else if (x >= 11 && x <= 15)
System.out.println(«Средняя»)
else if (x == 16 || x == 17)
System.out.println(«Старшая»)
2)
int x = new Scanner(System.in).nextInt(); //Вводим число
if (x > 0)
System.out.println(«1»);
else if (x < 0)
System.out.println(«-1»);
else
System.out.println(«0»);
3)
int x = new Scanner(System.in).nextInt(); //Вводим оценку
switch(x) {
case 5:
System.out.println(«отлично»);
break;
case 4:
System.out.println(«хорошо»);
break;
case 3:
System.out.println(«удовлетворительно»);
break;
case 2:
System.out.println(«неудовлетворительно»);
}
Объяснение:
Всё это надо записать под отдельные функции, либо под главную исполняемую, чтобы вызвать глобально:
public static void main(String. arguments) {}