print('Welcome')
name = input('Please enter your name : ')
age = int(input('Your age : '))
print('Your name is',name,'and you have',age,'years old')
Answer:
It makes your brain work better and it's also fun.
Explanation:
The brain does not like just one thing it wants to have more experience.
Sorry I don’t know the answer I am really sorry
3D printing helps to reduce the time it takes for a manufacturer to create the product. This lets manufacturers invest their time to make flawless products because the production cycle time is reduced.
Answer:
cout <<showpoint << x; is the statement which prints the decimal point, but without forcing scientific.
Explanation:
The showpoint function in c++ print the decimal point number without forcing scientific.The showpoint function set the showpoint format flag for the str stream in c++.
Following are the program in c++
#include<iostream> //header file
using namespace std; // namespace
int main() // main function
{
double x=90.67; // double variable
cout <<showpoint << x; // display x without forcing scientific
return 0;
}
Output
90.6700