Answer:
why you doin this
Explanation:
is this so we get free points?
Answer:
// Program is written in C++ Programming Language
// Comments are used for explanatory purpose
#include<iostream>
using namespace std;
int main ()
{
// Variable declaration
string name;
int numQuestions;
int numCorrect;
double percentage;
//Prompt to enter student's first and last name
cout<<"Enter student's first and last name";
cin>>name; // this line accepts input for variable name
cout<<"Number of question on test"; //Prompt to enter number of questions on test
cin>> numQuestions; //This line accepts Input for Variable numQuestions
cout<<"Number of answers student got correct: "; // Prompt to enter number of correct answers
cin>>numCorrect; //Enter number of correct answers
percentage = numCorrect * 100 / numQuestions; // calculate percentage
cout<<name<<" "<<percentage<<"%"; // print
return 0;
}
Explanation:
The code above calculates the percentage of a student's score in a certain test.
The code is extracted from the Question and completed after extraction.
It's written in C++ programming language
Answer:
28 , 24-inch screwdrivers
Explanation:
The total number of screwdrivers that can be purchased is = 70
4 - inch length screwdrivers = 10
6- inch length screwdrivers = 12
8- inch length screwdrivers = 20
Total = 20 +12 +10 = 42
Remaining = 70-42 = 28
So, heavy 24-inch screwdrivers = 28
Answer:
0, 1, 2, 3, 6, 11, 20, 37, 68
Explanation:
Each number in the series, starting with 3, is the total of the three numbers before it. The following number is the total of the preceding three numbers, according to the pattern. The pattern's next number is 125.
Answer:
a scale model each size is a certain amount smaller
Explanation: