C :: Reading In Comma Separated Numbers From A Data File
Apr 18, 2013
I am attempting to read in a file that has 4128 sets of 21 numbers separated by commas and write it into an array. I now know that in order to use fseek, I have to make my array a character array, but I need my function to read in decimals (ex: 0.172635). I'm reading in
0.102598,0.000000,0.000000,0.000000,0.000000,0.307 793,0.000000,0.410391,0.102598,0.000000,0.102598,0 .102598,0.000000,0.000000,0.102598,0.102598,0.8207 83,0.000000,0.000000,0.000000,0.000000
and keep getting numbers like 48 49 50.
Code:
void CSread(char filename[100], char array[22], char array2[22], unsigned int arraysize)
{
char genename[32];
double temp = 0;
FILE *CSfile;
CSfile = fopen(filename, "r");
");
[code].....
View 8 Replies
ADVERTISEMENT
Jul 30, 2014
I just wrote a code that reads in a text file called "policies.txt" which looks like this:
Pol1 M N 20 100000 1 .04 99
Pol2 F S 30 100000 1 .05 99
Pol3 M S 72 750000 1 .03 99
Pol4 F N 45 1000000 1 .05 99
This works perfectly fine, but what if I want each element of the table to be separated by commas. For example:
Pol1,M,N,20,100000,1,.04,99
Pol2,F,S,30,100000,1,.05,99
Pol3,M,S,72,750000,1,.03,99
Pol4,F,N,45,1000000,1,.05,99
or better yet, what if I want it to not matter whether the columns are separated by commas or spaces? is there any way to do this? If there is no way to read in both comma-separated and space-separated elements simultaneously then I would prefer just comma, rather than the space separated which my code is able to read now. What modifications would I have to make to my code to make this work? This is my code to reference.
double ratesmn[86] = {
#include "MaleNonSmoker.txt"
- 1
};
double ratesms[86] = {
#include "MaleSmoker.txt"
[Code] ....
View 4 Replies
View Related
Nov 9, 2013
I tried to read in a file that contain studentId(8 integer long) and GPA in the same line separated by a comma, but I couldn't. Example:
145453565, 4.0
34344443, 3.9
23454345, 3.4
12345678, 3.4
void studentRecord::loading(string filename) {
ifstream infile;
int studentId;
double GPA;
[Code] ....
View 3 Replies
View Related
Jul 7, 2013
I'm trying to read names separated by a comma using array.
For example, the expected input would look like the following:
Juila,Francisco
Adams,Wong
I know you can use getline function and set the delimiter to comma. So like ....
getline(cin, lastName, ','); getline(cin, firstName);
But the program only read the last name and ignore the firstname.
View 1 Replies
View Related
Feb 14, 2015
I have a file with data in lines separated by commas and im trying to print out specific lines and specific parts of data from that line. I need to isolate lines where the first column of data reads '$CPGAR' and print out specific data columns.When I print out the strings I get random data and my strcmp to isolate lines isnt working? Im very new to this, heres a sample of my program:
while (!feof(gpsH)) {
char word1[10],word2[10],word3[10],word4[10],word5[10],word6[10],word7[10],
word8[10],word9[10],word10[10],word11[10],word12[10],word13[10];
char a[6] ="$CPGAR";
/* read data line */
fgets(gpsS,10,gpsH);
[Code]...
View 3 Replies
View Related
Oct 16, 2012
I have been trying to read a comma separated .txt file into an array and print it to console in C++. The txt file consists of two columns of double type data. For some reason the program runs, but gives blank output in the console. I want to know if I am doing something wrong. So far this is what I have:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
int i=0;
double x[10];
double y[10];
string line;
[Code] .....
View 3 Replies
View Related
Jan 18, 2013
TinyGPS::TinyGPS()
: _time(GPS_INVALID_TIME)
, _date(GPS_INVALID_DATE)
, _latitude(GPS_INVALID_ANGLE)
[code]....
I am wondering about the constructor. I see there appears to be nothing inside of TinyGPS::TinyGPS() as far as parameters go and that that declaration is followed by a ":". First I'm wondering as to the meaning of the colon. As well with the variables defined after the ":" I see some "(0)" and I am wondering as well to the exact meaning of the "(0)". Are those variables being defined as parameters separated by ","?
View 2 Replies
View Related
Dec 13, 2012
How to enter person's last name and first name separated by space and comma.
For example henry smith---
Output-->>smith,henry
View 2 Replies
View Related
Nov 22, 2014
I'm trying to enter an 'x' and 'y' coordinate on only one line separated by a comma. But I keep getting a syntax error. Here are the lines of code I'm using. This has to be simple. What am I doing wrong with this code?
Code:
cout<< "Please enter the x and the y coordinates of the first point,"<<endl;
cout<< "use a comma to separate them. " <<endl<<endl;
cin>> "You entered: " >>x1>>",">> y1 >>"for the first point" >>endl;
View 7 Replies
View Related
Feb 24, 2015
How do I get c++ to read a file containing six numbers - a1, b1, a2, b2, a3, and b3 - that are constants for the following equations:
clubangle(degrees) = a1 + b1*0.85*clubnumber
clublength(inches) = a2 + b2*1.05*clubnumber
clubspeed(yards/s) = 1.1 * (a3 + b3 * swingnumber) * (clublength(inches)/40)^2;
View 5 Replies
View Related
Mar 7, 2014
I am having a hard time trying to get data into an array of objects. The data file has 3235 lines, state, fips code, and county. The state and fips code are getting stored correctly but some countys have 2 or more words in them (now noticing the "and" is missing from one of them.
sample of the file:
AL,01,123,Tallapoosa
AL,01,125,Tuscaloosa
AL,01,127,Walker
AL,01,129,Washington
AL,01,131,Wilcox
AL,01,133,Winston
[code]....
View 10 Replies
View Related
Aug 13, 2014
Write a program that prompts the user to enter three integer values, and then outputs the values in numerical sequence separated by commas.
So, if the user enters the values 10 4 6, the output should be 4, 6, 10.
If two values are the same, they should just be ordered together.
So, the input 4 5 4 should give 4, 4, 5.
Code:
#include "std_lib_facilities.h"
int main()
{
cout << "Enter three integers, separated by space: ";
int a, b, c, temp1 = 0, temp2 = 0;
cin >> a >> b >> c;
[Code] ....
My first solution has a bug, so here's the corrected solution, written using only features I have learned in the first three chapters:
Code:
#include "std_lib_facilities.h"
int main()
{
cout << "Enter three words, separated by space: ";
string a, b, c, temp;
cin >> a >> b >> c;
[Code] ....
View 5 Replies
View Related
Nov 15, 2013
I need to create a program that reads some numbers, and calculate them on a separated subroutine, and the return of this subroutine must be the sum of all the numbers. I'm getting an error but I can't figure out why =/
#include <iostream>
using namespace std;
int calc(int val, int qtd){
int sum=0;
for (int cont=0; cont<qtd; cont++)
sum=sum+val;
return sum;
[Code]...
The error that I'm getting is on the line 22.
The error message: "invalid conversion from 'int*' to 'int' [fpermissive]
View 4 Replies
View Related
Mar 7, 2014
i tried to parse the string data seperated by Pipe('|') delimiter, here i am getting some error.Please find the below code.
[char* getData(){
char* string = "1355|||250|New";
char* tok1[10],tok2[10],tok3[10],tok4[10],tok5[10];
sscanf(string,"%[^'|'],%[^'|'],%[^'|'],%['^|'],%s",tok1,tok2,tok3,tok4,tok5);
printf("%s %s %s %s %s",tok1,tok2,tok3,tok4,tok5);
}]
I want to print the Value 250 in my string, but it was displaying some garbage values.
View 1 Replies
View Related
Apr 21, 2013
Write a for loop statement to print the numbers from 1 to 10 in reverse order separated by star :
10*9*8*7*6*5*4*3*2*1
i try to do it but it show me like this :
10*9*8*7*6*5*4*3*2*1*
how do i write to show me like the first one ?
View 10 Replies
View Related
Sep 19, 2014
My code is working all except one part I'm just completely stuck on and it's probably something simple. There are 14 numbers in the file. The way I have the code now it will tell me there are 14 which is correct but it displays my low number as 0 and it should be 6. If I change if(infile) to if(infile >> num) it will read the correct low number as 6 except now it says there's only 13 numbers and it's not reading the first number in the file which is 23 so it skews the whole program.
#include <iostream>
#include <fstream>
/*This program pulls numbers from a file and displays various information such as the sum of the numbers, average, highest and lowest. */
using namespace std;
int main() {
ifstream inFile;//Declare the variables including the input file stream.
[code]....
View 2 Replies
View Related
Mar 6, 2015
This is supposed to read a series of 16 bit binary numbers as short ints in the array memory. However, it only appears to be reading the first number.
Code:
short int memory[256];
void readFile(){
//read input file into int memory[]
FILE *ifp;
ifp = fopen("proj1a.dat", "r"); //input file
[Code] ....
View 9 Replies
View Related
Feb 23, 2013
The program runs fine but i just want it to read the inputs from a text file rather than user manually entering it! what changes should i make in the codes..
Code:
#include<iostream.h>
#include<stdio.h>
#include<conio.h>
#include<math.h>
float friction,flow;
[Code] ....
View 4 Replies
View Related
Dec 1, 2013
I think it comes from having to align the data in the output file. How to start this is to use a function to read in all the characters using a while loop. Then read in all the digits in a separate function. When it comes to outputting the data in the correct format I'm lost, so for now if I could figure out the functions that would be awesome. A final note we have not gotten to using strings so the I'm trying to use getc, fgetc, and ungetc.
Write a program to compute average grades for a course. The course records are in a single file and are organized according to the following format: Each line contains a students first name, then one space, then the students last name, then one space, then some number of quiz scores that, if they exist, are separated by one space. Each student will have zero to ten scores, and each score is an integer not greater than 100. Your program will read data from this file and write its output to a second file. The data in the output file will be the same as the data in the input file except that there will be one additional number at the end of each line: the average of the students ten quiz scores.
The output file must be formatted such that first and last names appear together in a left justified column that is 20 characters wide. Each quiz score should be listed in a right justified column that is 4 characters wide, and the average should appear in its own right justified column that is 10 characters wide.
Note that if a student has fewer than 10 scores, the average is still the sum of the quiz scores divided by 10; these students are assumed to have missed one or more of the quizzes. The output file should contain a line (or lines) at the beginning of the file providing appropriate column headings. Use formatting statements to make the layout clean and easy to read.
View 3 Replies
View Related
Apr 17, 2014
I need to open a file that has multiple lines that look something like this, " black box 100.01 33.5 78.93". What this shows is the coordinates of the black box. Lines will have different objects with different coordinates. I need to create a loop that will read this file and tell me when a black box is found by displaying a message. I don't need to know how to create this file. I don't need to display the entire file but rather have it search for black boxes.
View 3 Replies
View Related
Feb 9, 2014
I wanted to know if it is possible to read binary numbers(0's and 1's) from a file(text,picture, anything), and see them in the compiler.
View 14 Replies
View Related
Sep 15, 2013
I am reading certain int's at a time from one int number stored in a file. I'll explain. I am working on an ezpass project and basically I have to store an int in a file, and from that file, write a program that separates numbers into information.
For example:
the number 204601324 is stored in a file. I know how to open a file from terminal, but the issue is reading the individual numbers. The first number is weight class (2). My program has to display that number as the Variable "weightClass." how do I get it to do that? In addition, miles allowed is the number "0460." How do I get that number to display as the variable "oMiles?"
View 1 Replies
View Related
Sep 25, 2014
I am trying to read numbers stored in a txt file to populate an integer array. The problem is that the numbers read from a file have to be treated as strings and then I am not able to put them in an integer array.
I tried the stoi function to convert the string in 'box' into an integer but I am getting an error.
Code:
#include <iostream>
#include <stdlib.h>
#include <fstream>
#include <string>
using namespace std;
int main() {
int amount=10;
int k[amount];
[Code] ....
View 2 Replies
View Related
Nov 22, 2014
If i have a data,how to write the code for read this data?
View 1 Replies
View Related
Feb 20, 2015
I have tried with some logic for removing comma operator in test.ini file but its not working how to remove comma and get output. For example:
Input
inside test.ini file the name is in format,
ajs,18.0,15.0
expected output
ajs 18.0 15.0
but I am getting,
ats,18.0,25.0 2686760 4200912
Code:
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE *fp;
char strConfName[25] ;
float a,b;
[Code] .....
View 1 Replies
View Related
Apr 29, 2013
I'm having issues reading to a 2d array from a file. When I try to read the data from my file into my matrix variable it simply doesn't read anything and leaves the variable unmodified. I've tried just reading the first piece of data in the main function and it doesn't work there either. I'm really perplexed at this point since I've never had an issue reading from a file before. Here's my relevant code:
Code:
int main(int argc, char** argv) {
double matrix[MINSIZE][MINSIZE]={0}, vectors[MAXSIZE][MINSIZE], ans[MAXSIZE][MINSIZE];
FILE * inFile;
inFile = fopen(FILENAME,"r");
if(inFile==NULL){
printf("File does not exist.
[Code] .....
View 4 Replies
View Related