473,749 Members | 2,432 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Convert separate digits into one whole number...???

2 New Member
Hello! I need a little more help. I have managed to convert all my chars input from a text file into digits.
Example:
Input from file:
$1,9,56#%34,9
!4.23#$4,983
Output:
1956
349
423
4983
Now, I need to take those individual digits the 1 9 5 6 and make it read as a whole number. The output would look the same but they would actually be whole numbers. Make sense? I have to do this in my outer loop. It also has to be an EOF loop. So, I know I need to take the first digit and multiply it by 10 and add the next digit then multiply all that by 10 until I reach the last number. How can I write that in an efficient non-crashing way?
I attached my input .txt file if you need to see it.
This is what I have so far...

THANK YOU SOOOO MUCH!!!
Expand|Select|Wrap|Line Numbers
  1. /*
  2.  */
  3.  
  4.  //Character Processing Algorithm
  5.  
  6.  #include <fstream>
  7.  #include <iostream>
  8.  #include <cctype>                                                                                                                         
  9.  using namespace std;
  10.  
  11.  char const nwln = '\n';
  12.  
  13.   int main ()
  14.    {
  15.      ifstream data;
  16.      ofstream out;
  17.      char ch;
  18.      char lastch;
  19.      int sum;
  20.  
  21.      data.open ("lincoln.txt"); //file for input
  22.      if (!data)
  23.         {
  24.         cout << "Error!!! Failure to Open lincoln.txt" << endl;
  25.         system ("pause");
  26.         return 1;
  27.         }
  28.      out.open ("out.txt"); //file for output
  29.      if (!out)
  30.         {
  31.         cout << "Error!!! Failure to Open out.txt" << endl;
  32.         system ("pause");
  33.         return 1;
  34.         }
  35.  
  36.      data.get (ch); // priming read for end-of-file loop
  37.  
  38.      while (data)
  39.            {
  40.            sum = 0;
  41.            while ((ch != nwln) && data)
  42.                  {
  43.                  if (isdigit(ch))
  44.                     out<<ch;
  45.  
  46.                  if (ch == '#')
  47.                     out<<endl;
  48.                  {
  49.                  ;
  50.                  }
  51.  
  52.                                   lastch = ch;
  53.                  data.get (ch); // update for inner loop
  54.                  } // inner loop
  55.                  if (lastch != '#')
  56.                      out<<endl;
  57.  
  58.  
  59.  
  60.               data.get (ch); // update for outer loop
  61.  
  62.            } //outer loop
  63.  
  64.      cout << "The End..." << endl;
  65.      data.close (); out.close ();
  66.      system ("pause");
  67.      return 0;
  68.      } //main
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
Attached Files
File Type: txt lincoln.txt (44 Bytes, 440 views)
Feb 12 '11 #1
1 2875
Rabbit
12,516 Recognized Expert Moderator MVP
Just use the atoi function.
Feb 12 '11 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

3
9915
by: David Marsh | last post by:
The program calculates the continued fraction representation of the input: #include <stdio.h> #include <stdlib.h> int main(int argc, char* argv) { double diff, n, r, i; if(argc != 2) exit(EXIT_FAILURE);
6
4247
by: le0 | last post by:
Hi Guys, Can you help me with this? Is there any function that I can use in getting a whole number Example: Input OutPut 12.3 12 1.63 1
5
11039
by: John | last post by:
Which variable type (c#) can whole the largest whole number? I know this sounds silly but as double and decimal are made for numbers with decimals I am not sure. Also if anybody knows of any library for .NET that would allow me to deal with **VERY** large whole numbers. Thanks in advance JT.
4
2674
by: c2h | last post by:
pls help to solve this problem : using C programming to convert a base 8 number into a decimal number... thks
6
27682
by: Michael R | last post by:
I haven't found anything that would help me to understand the correct syntax for having a certain number of digits phone number validation rule. My input mask for this field is: \000\-0000000;; When I set the following validation rule: 9999999999 or =9999999999 it doesn't work correctly and it allows short numbers. How should I compose it correctly. Thanks, Michael.
3
2756
by: palani12kumar | last post by:
hi. I want to get a string as input. If the input is an integer i want to save it to an int variable. I know to convert a number to int. but how to convert a string to number(integer). in C++
6
2505
jasjas
by: jasjas | last post by:
my Q is like this, i want to design a calculation which use the number user enter to "/" by 100. so , offcouse the result mayb in double or integer. after that my calculation just wanna user the "whole number" of the result to calculate other things. can anyone help me? thks. For eg: 9 / 2 = 4.5 and i just wanna take the number "4" to calculate other calculation. so, how to call it out?
6
16919
by: sweeet_addiction16 | last post by:
hello Im writin a code in c... can sum1 pls help me out in writing a c code to convert decimalnumber to hexadecimal number.The hexadecimal number generated has to be an unsigned long.
1
3189
by: mertoman | last post by:
Hello, In Adobe LiveCycle Designer 8 I have a form field that users should be able to us to enter a whole number followed by a fraction or a decimal number such as: 45 1/8 or 45.125 I prefer to give the user the ability to enter a two digit whole number followed by a fraction in 16ths of an inch. The script should convert the number and fraction to a whole number, a decimal point, and a decimal number to the thousandths place as...
8
4092
by: bettina top | last post by:
how can i count the digits of number given by the user
0
8997
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8833
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9568
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9335
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9256
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6801
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6079
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
2
2794
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2218
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.