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!
Відповідь:
C code:
#include <stdio.h>
#include <math.h>
float len(int x1,int y1,int x2,int y2){
float result = sqrt(pow(x2 — x1,2) + pow(y2 — y1,2));
return result;
}
float p(int a,int b,int c){
return (a + b + c)/2;
}
float S(int a,int b,int c){
int per = p(a,b,c);
return sqrt(per * (per — a) * (per — b) * (per — c));
}
int main(){
int x1,y1,x2,y2,x3,y3,x4,y4,x5,y5,x6,y6;
printf(«tA1n»);
printf(«x1: «);
scanf(«%d»,&x1);
printf(«y1: «);
scanf(«%d»,&y1);
printf(«tB1n»);
printf(«x2: «);
scanf(«%d»,&x2);
printf(«y2: «);
scanf(«%d»,&y2);
printf(«tC1n»);
printf(«x3: «);
scanf(«%d»,&x3);
printf(«y3: «);
scanf(«%d»,&y3);
printf(«tA2n»);
printf(«x4: «);
scanf(«%d»,&x4);
printf(«y4: «);
scanf(«%d»,&y4);
printf(«tB2n»);
printf(«x5: «);
scanf(«%d»,&x5);
printf(«y5: «);
scanf(«%d»,&y5);
printf(«tC2n»);
printf(«x6: «);
scanf(«%d»,&x6);
printf(«y6: «);
scanf(«%d»,&y6);
float a1 = len(x1,y1,x2,y2);
float b1 = len(x2,y2,x3,y3);
float c1 = len(x3,y3,x1,y1);
float a2 = len(x4,y4,x5,y5);
float b2 = len(x5,y5,x6,y6);
float c2 = len(x6,y6,x4,y4);
float S1 = S(a1,b1,c1);
float S2 = S(a2,b2,c2);
if(S1 > S2){
printf(«S1»);
}
else if(S1 < S2){
printf(«S2»);
}
else{
printf(«equals»);
}
return 0;
}