User input question

Sep 18, 2013 at 2:22am
I am in the process of writing a program that will give the appropriate color code for a resistor after the user enters an integer value for the resistance needed and selects the tolerance form a list. My question is this: Is there a way to allow the user to enter a value such as 75000 and C++ use each digit separately, as if they entered 7 [enter], 5[enter], 0 [eneter]... and so on? But, then use the entire value as an integer too? Also, it should read a value such as: 45835, as 45000, or 1843 as 1800. Thank you
Sep 18, 2013 at 3:35am
closed account (Dy7SLyTq)
yeah. use <string> and just parse each character
Topic archived. No new replies allowed.