Joined
Last Seen
0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #72.8K
2 Posted Topics
Re: Line 3, 4 and 5 needs declaration y, z and w. otherwise, with declaration, line 3 will give 1 since the operands are 'int'. line 4 will not give 4. it will give 6 or 7 depending on the precidence. line 5 will give 127 or 127.2828 depending on the … | |
Re: 1.#include <iostream.h> 2.#include <conio.h> 3.#include <math.h> 4.#include <iomanip.h> 5.#include <graphics.h> 6.//using namespace std; 7.int main() 8.{ 9 clrscr(); 10 //declare identifiers 11 double rate; 12 double time; 13 float dollars; 14 float total; 15 //initialize identifiers 16 cout << setprecision(2); 17 //Enter values 18 cout << "Enter the money you … |
The End.