Hello, I did it before... But I forgot. I have a file with some data:
0.5 0.6 0.7 1.2 1.5
How can I read this in c++? I did it with stream... something like:
float var = 0;
stream >> var;
|
|
|||||
|
|
|
Something like this?
|
|||
|
|
The following snippet should give you a clue. Don't forget to include
Do not try to test |
|||
|
|
|
|
To read from files, use std::ifstream. |
||
|
|
|
|
Do you mean how to open a file and read data from it? That should look something like this:
|
||||||||||
|
|
|
Something like this. The << operator treats spaces as a separator.
BTW I did 5 since you had 5 in your example. (and I am assuming you have the stream setup) |
||||
|