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 6682927
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:45:44+00:00 2026-05-26T04:45:44+00:00

I have the following format. Each line has two integers and the file is

  • 0

I have the following format. Each line has two integers and the file is ended by “*”. How can I read the two numbers from the file. Thanks.

4 5
7 8
78 89
 *  //end of file

Edit

I know read the two numbers but do not know how to deal with “*”. If I store each number as integer type and read them by cin. But The last line is a string type. So the problem is that I read it as a integer but it is string, I do not how to judge whether it is * or not.

My code was as follows (it is obviously incorrect):

string strLine,strChar;
istringstream istr;
int a,b;
while(getline(fin,strChar))
{
    istr.str(strLine);
    istr>> ws; 
    istr>>strChar;


    if (strChar=="*")
    {
        break;
    }
    istr>>a>>b;
}
  • 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-26T04:45:44+00:00Added an answer on May 26, 2026 at 4:45 am

    You can simply pull the numbers from the ifstream object until it fails.

    std::ifstream fin("file.txt");
    
    int num1, num2;
    while (fin >> num1 >> num2)
    {
        // do whatever with num1 and num2
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a file with 200mb, the file with following format each line is
I'm trying to create a file which has the following structure: - Each line
hi guys I have the following file format in hex were as each letter
I have a file that has one entry per line. Each line has the
I have 3 strings that have the following format(each on its own line): String
I have a text files that contains multiple lines, each line has the following
I have the following file format | 00 00 07 09 | for example
I have a .txt file which has about 500k entries, each separated by new
Let's say I have an input text file of the following format: Section1 Heading
I have text in the form of separate lines, where each line has CSV-like

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.