Answer:
Hi, this program allows you to calculate a sphere’s area and volume depending on the radius of your choosing.
Please give brainliest, means alot!
Answer:
B. CAD produces designs that are of the highest quality.
C. CAD provides systems for error-free manufacturing.
Explanation:
B. CAD produces designs that are of the highest quality.
CAD does produce the highest quality of design, way better than what traditional paper plans can do.
C. CAD provides systems for error-free manufacturing.
Many manufacturing systems can read CAD designs directly before the need of a human intervention in between, that eliminates possible errors.
Answers A and D are not true, because once passed the learning-curve, CAD greatly accelerates the production of designs. And we know the learning-curve is behind them because the question says he has adopted the new system.
Answer:
The perimeter is the length of the outline of a shape. To find the perimeter of a rectangle or square you have to add the lengths of all the four sides. x is in this case the length of the rectangle while y is the width of the rectangle. The perimeter, P, is: P=x+x+y+y.
Explanation:
Answer:
Following is the C++ code for the question given :-
#include <iostream>
#include<string>
using namespace std;
int main() {
string s1,s2;//two strings to store the words.
cin>>s1;//Input statement.
cin>>s2;//Input statement.
cout<<s1<<" "<<s2<<endl;//printing both words in one line separated by space.
return 0;
}
Input:-
make
choices
Output:-
make choices
Explanation:
I have taken two strings two store two words.After taking the input I have printed both the strings which contains the words entered by the user separated by space.