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!
Ответ:
Ответ в объяснении
Объяснение:
1 a(i)= -3
2 a(i)= -1
3 a(i)= 4
4 a(i)= 9
5 a(i)= 20
6 a(i)= 31
7 a(i)= 44
8 a(i)= 59
9 a(i)= 76
10 a(i)= 95
Ответ:
a[1] = -4 a[2] = -1 a[3] = 4 a[4] = 11 a[5] = 20 a[6] = 31 a[7] = 44 a[8] = 59 a[9] = 76 a[10] = 95
Объяснение:
for i:=1 to 10 do a[i]:=i*i-5;
i = 1 a[1] = 1 * 1 — 5 = 1 — 5 = -4
i = 2 a[2] = 2 * 2 — 5 = 4 — 5 = -1
i = 3 a[3] = 3 * 3 — 5 = 9 — 5 = 4
i = 4 a[4] = 4 * 4 — 5 = 16 — 5 = 11
i = 5 a[5] = 5 * 5 — 5 = 25 — 5 = 20
i = 6 a[6] = 6 * 6 — 5 = 36 — 5 = 31
i = 7 a[7] = 7 * 7 — 5 = 49 — 5 = 44
i = 8 a[8] = 8 * 8 — 5 = 64 — 5 = 59
i = 9 a[9] = 9 * 9 — 5 = 81 — 5 = 76
i = 10 a[10] = 10 * 10 — 5 = 100 — 5 = 95