Answer:
The answer is the program, in the explanation
Explanation:
I am going to write a C program.
int main(){
int grade = -1; /*The grade will be read to this variable*/
/*This loop will keep repeating until a valid grade is inserted*/
while(grade < 0 || grade > 100){
printf("Insert the student's grade: %n");
scanf("%d", &grade);
}
/*The conditional according to the grade value*/
if (grade >= 90){
printf("Your grade is A\n");
}
else if (grade >= 80 && grade < 90){
printf("Your grade is B\n");
}
else if (grade >= 70 && grade < 80){
printf("Your grade is C\n");
}
else if (grade >= 60 && grade < 70){
printf("Your grade is D\n");
}
else{
printf("You got a failling grade\n");
}
return 0;
}
Answer:
I just like the main character. (Hat kid)
Explanation:
I just see them like a chill kiddo. I get good vibes from them so yeah
Explanation:
in c++
#include<iostream.h>
#using namespace std;
main()
{ float x,y,z,r, phi, theta;
cout<<" enter the value of x";
cin>>x;
cout<<" enter the value of y";
cin>>y;
cout<<" enter the value of z";
cin>>z;
r = (sqrt(pow(x,2) + pow(y, 2) + pow(z, 2)));
phi = (asinf(y/r)*180.0f)/PI;
theta = (asinf(-x/(r*cosf(phi)))*180.0f)/PI;
cout<<"The radius r= "<<r;
cout<<"The phi angle= "<<phi;
cout<<"The theta angle= "<<theta;
return 0;
}
On Microsoft Word a
merge process involves the primary and secondary files. The correct choice is
the letter
C. Primary and secondary
<span>
I hope it helps,
Regards.</span>
Answer:
A
Explanation:
I mean, I would say that it's A.
sorry, if it didn't help