Posted by vsu1 on Friday, October 9, 2009 at 11:39pm.
Perhaps the most useful tip you can know in learning to program, though you won't find it in a book, is to ask for help, giving _all_ information about the problem, whether you think it's useful of not! :-)
You've posted the problem code. This is good. You haven't specified what the error appears to be, nor which version of VB you're using. This is not so good, because we have to guess a bit.
When posting on technical forums, other programmers will often look at such a question, think "insufficient information to draw a conclusion" and not answer. They have lots to do, and they're usually not going to post a question and wait for you to get around to answering, so that they can consider the question again. Don't give them that excuse!
Microsoft have changed VB quite a bit between versions, and without knowing which version, and what error, exactly, the compiler is giving you, or what wrong result your program is coming up with, there's a wide field to choose from - though MathMate may have a better understanding of where you're at. :-)
For me, reading that, I would first suspect your use of Console.ReadLine in two ways:
1. Should it be Console.ReadLine() or Console.ReadLine(name_of_stream_to_read)?
2. What does Console.ReadLine return? You've declared first and last as integers, but readline type functions commonly return strings.
Your "non-zero" remark makes me think maybe the program is working, but always leaving you with zero in first and last? If so, it could be that Console.ReadLine is returning a string, so the value isn't getting into the integer; you need to get the string's value before you can assign it.
Maybe.
You might check your language reference help for the formal definition of Console.ReadLine and see what it is actually doing.
I just read your question again, and I now think that, given an input string, you want to find the first non-zero digit in it. Though again, I could be wrong.
So if the input is "A046", you want "4", and if it's "0.0029x" you want "2".
If that's the question, then your approach should be:
1. Read in a string.
2. Using a loop, read each character along the string from left to right until you come to a digit "1" through "9" inclusive.
3. Return that digit, or capture it in a variable.
I used the very verty old version of BASIC on my PC to write this up:
Print "Enter a string containing at least one digit 1 through 9"
input Instring$
REM starting at the left, walk along the string until we find what we're looking for
posn=1
while (posn < len(Instring$) and (mid$(Instring$, posn,1)<"1" or mid$(Instring$, posn,1)>"9"))
posn=posn+1
wend
REM posn is now either pointing to what we want, or there isn't one
REM we need to distinguish between the two cases
if mid$(Instring$, posn,1)>="1" and mid$(Instring$, posn,1)<="9" then
print "We got one - ";mid$(Instring$, posn,1)
else
print "there isn't a usable digit here!"
end if
sorry for not gving enough information but i did end up getting it.
Related Questions
college Psychology - I am having trouble describing the interaction (How does ...
algebra 2 - how many 7-digit phone numbers are possible if the first digit must ...
discrete math - 1)prove that if x is rational and x not equal to 0, then 1/x is ...
MATH ( PROBABILITY) - Security codes in Fiji are made up of 4 digits. How many ...
Accounting - An investor who is a non-resident for US tax purposes who buys ...
math - need help with math word problems. just don't understand. What is the...
math,correction, bobpursly - Since when is 5^7 =8125? if a number is a multple ...
math - The number uses every number 0-9 the numbers are used only once the ...
math - N=x-y-z Where x,y,z are variable representation of some digit (0 to 9) ...
Programming - Can you create a java program that will make a CPU SCHEDULER w/ ...
For Further Reading