Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. UNH1995

    Good Reference/Tutorial Book?

    I am looking for some suggestions of what is a good book to learn C++ (I already know the language basics and have programmed in c and Jave) and also one that will be useful as a reference down the road.
  2. UNH1995

    Reading in a line from cout

    I am trying to read a line of input into a vector. I want to stop adding to the vector when the end of the line is reached. I have tried this: string word; vector<string> sv; cout << &quot;Type a sentence containing 6 words:&quot;; cin >> word; while (word != &quot;\n&quot;) {...
  3. UNH1995

    Inputting integers only from a text file.

    I have a file that I need to read in line coordinates from inorder to find the vectors and cross products. I always struggle with inputting from a file so I need some help. The file is in this format: L1= (35,70) (35,4) L2 =(63,4) (75,91) L1= (65,91) (16,26) L2 =(92,61) (93,89) L1= (77,3)...
  4. UNH1995

    Reading integers from a file.

    I have a file that I need to read in line coordinates from inorder to find the vectors and cross products. I always struggle with inputting from a file so I need some help. The file is in this format: L1= (35,70) (35,4) L2 =(63,4) (75,91) L1= (65,91) (16,26) L2 =(92,61) (93,89) L1= (77,3)...
  5. UNH1995

    Reading in integers only from a file.

    I have a file that I need to read in line coordinates from inorder to find the vectors and cross products. I always struggle with inputting from a file so I need some help. The file is in this format: L1= (35,70) (35,4) L2 =(63,4) (75,91) L1= (65,91) (16,26) L2 =(92,61) (93,89) L1= (77,3)...

Part and Inventory Search

Back
Top