Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // function for taking numerical input ( double) from the user
- double input_double ()
- {
- double output;
- std::cout << " (enter number) : ";
- std::cin >> output;
- std::cout << endl;
- return output;
- }
Advertisement
Add Comment
Please, Sign In to add comment