Как я могу прочитать с плавающей точкой из файла .txt.В зависимости от имени в начале каждой строки я хочу прочитать различное количество координат.Число с плавающей точкой разделено пробелом.
Пример: triangle 1.2 -2.4 3.0
Результат должен быть следующим: float x = 1.2 / float y = -2.4 / float z = 3.0
Файл содержит больше строк с различными формами, которые могутбыть более сложным, но я думаю, что если я знаю, как сделать одно из них, я могу сделать другое самостоятельно.
Мой Код:
#include <iostream>
#include <fstream>
using namespace std;
int main(void)
{
ifstream source; // build a read-Stream
source.open("text.txt", ios_base::in); // open data
if (!source) { // if it does not work
cerr << "Can't open Data!\n";
}
else { // if it worked
char c;
source.get(c); // get first character
if(c == 't'){ // if c is 't' read in 3 floats
float x;
float y;
float z;
while(c != ' '){ // go to the next space
source.get(c);
}
//TO DO ?????? // but now I don't know how to read the floats
}
else if(c == 'r'){ // only two floats needed
float x;
float y;
while(c != ' '){ // go to the next space
source.get(c);
}
//TO DO ??????
}
else if(c == 'p'){ // only one float needed
float x;
while(c != ' '){ // go to the next space
source.get(c);
}
//TODO ???????
}
else{
cerr << "Unknown shape!\n";
}
}
return 0;
}