[try Beta version]
Not logged in

 
VERY Beginner question?

Dec 24, 2008 at 11:08pm
So I just picked up a book on C++ probably an hour ago, and I seem to be having problems already. So this is my code, I was wondering if anybody could tell me what I can do to fix the error in the line of code where it says (float)? Thanks in advance.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Listing 2.2 using std::cout
#include <iostream>
int main()
{
          std::cout << "Hello there.\n";
          std::cout << "Here is 5: " << 5 << "\n";
          std::cout << "The manipulator";
          std::cout << "writes a new line to the screen.";
          std::cout << std::endl;
          std::cout << "Here is a very big number:\t" << 7000;
          std::cout << std::endl;
          std::cout << "Here is the sum of 8 and 5:\t";
          std::cout << (8+5) << std::endl;
          std::cout << "Here's a fraction:\t\t"
          std::cout << float (5/8) << std::endl;
          std::cout << "Ghosty1212 is a C++ Programmer!\n";
          return 0;
}
Last edited on Dec 24, 2008 at 11:28pm
Dec 24, 2008 at 11:15pm
You need to have 5 or 8 to be float, the way you are doing it is like this:
float( int(5) / int(8) )
so 5/8 returns an integer and the result should be 0
if you change it in float( 5 ) / 8 the result will have float as type as this is the bigger type in the expression.
To make it shorter you could type 5.0f / 8 'f' means 'float' if you write only 5.0 it will have as type double

PS: If you want to see a very big number try -1ull
Last edited on Dec 24, 2008 at 11:23pm
Dec 24, 2008 at 11:23pm
All right, thanks. Now it presents this weird error code that I can't seem to fix... I understand what it's asking me to fix, but I try to edit it and nothing happens... Here's the error code:

15 C:\Documents and Settings\Owner\My Documents\C++ Projects\usingcout.cpp expected `;' before "std"
Dec 24, 2008 at 11:25pm
You forgot a ';' after std::cout << "Here's a fraction:\t\t"
(When posting code use the [code][/code] tags)
Last edited on Dec 24, 2008 at 11:26pm
Dec 24, 2008 at 11:29pm
Thank you, thank you so very much! I did exactly what you said and it all works now... Thank you!
Dec 24, 2008 at 11:32pm
Well now there is another problem... lol.... When I compile the code and then run it the Command Box screen just flashes.... And that's all. Is anything wrong with my compiler type? Or something like that?
Dec 24, 2008 at 11:38pm
When the program ends the box dissappears. This is such a common situation for beginners to learn about that it's addressed in the


beginners forum under: 'console closing down'.
Last edited on Dec 24, 2008 at 11:41pm
Dec 24, 2008 at 11:40pm
Dec 24, 2008 at 11:49pm
Thank you both, I used the system ("PAUSE") command and it worked out well... Thank you very much! But I used to be able to do it without it, and now it does that... But oh well, I'm going to use this code from now on. Thank you again!
Dec 25, 2008 at 3:17am
DON'T use system("pause")....it FAILS. I would suggest using the second post in that topic...
Dec 30, 2008 at 10:47am
// Listing 2.2 using std::cout
#include <iostream>
int main()
{
std::cout << "Hello there.\n";
std::cout << "Here is 5: " << 5 << "\n";
std::cout << "The manipulator";
std::cout << "writes a new line to the screen.";
std::cout << std::endl;
std::cout << "Here is a very big number:\t" << 7000;
std::cout << std::endl;
std::cout << "Here is the sum of 8 and 5:\t";
std::cout << (8+5) << std::endl;
std::cout << "Here's a fraction:\t\t";
std::cout << float (5/8) << std::endl;
std::cout << "Ghosty1212 is a C++ Programmer!\n";
return 0;
}
Topic archived. No new replies allowed.