Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4108204
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T21:37:21+00:00 2026-05-20T21:37:21+00:00

Ok so basically I have this text file with numbers and letters that’s supposed

  • 0

Ok so basically I have this text file with numbers and letters that’s supposed to represent the vertices of a polygon. This part isn’t important because I’m having trouble parsing from the file into an int. So far the function looks like:

    void parseModel(void)
{
    int num_vertices, num_faces;
    char data[255];
    ifstream ifs("rect-skinny.d");
    ifs.getline(data, 255);
    istrstream ins(data);
    ins >> num_vertices;
    cout << num_vertices << endl;
    ifs.close();
}

I’ve tried many different methods that all gave me different but incorrect answers. This one outputs the number -858993460 for some reason. Other times it would just output closed brackets when I would try to print data separately. I can’t figure out what I’m doing wrong since this seems like it should work. The input file is:

 data    8    6
 -0.5   1.0   0.3
 0.5   1.0   0.3
 0.5   -1.0   0.3
 -0.5   -1.0   0.3
 -0.5   1.0   -0.3
 0.5   1.0   -0.3
 0.5   -1.0   -0.3
 -0.5   -1.0   -0.3
   4   1   2   3   4
   4   1   5   6   2
   4   2   6   7   3
   4   5   8   7   6
   4   1   4   8   5
   4   3   7   8   4

Basically all I’m trying to do right now is get the first line and put those numbers int it into num_vertices and num_faces, respectively.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T21:37:23+00:00Added an answer on May 20, 2026 at 9:37 pm

    After you read the text string “data” it will contain “data 8 6“.

    The line ins >> num_vertices; will try to read an integer, but will find “data 8 6” and so will fail. Try something like this:

    void parseModel(void)
    {
        int num_vertices, num_faces;
        char data[255];
        std::ifstream ifs("rect-skinny.d");
        ifs.getline(data, 255);       // data contains "data    8    6"
        std::istrstream ins(data);    // ins  contains "data    8    6"
        ins.ignore(4, ' ');           // ins  contains "    8    6"
        ins >> num_vertices;
        std::cout << num_vertices << endl;
        ifs.close();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Well basically I have this script that takes a long time to execute and
Basically you have two ways for doing this: for (int x = 0; x
I'm not really sure how to title this question but basically I have an
I have an ASP.NET application. Basically the delivery process is this one : Nant
I have written a secure TCP server in .NET. This was basically as simple
this kind of follows on from another question of mine. Basically, once I have
I basically have a page which shows a processing screen which has been flushed
I basically have the following flow: XML -> JSON -> Spring MVC -> jsp
I am looking in to ways to enable a site to basically have something
I would like to do the following. Basically have a stored procedure call another

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.