Microsoft
Software
Hardware
Network
Question : simple math programming question
I have a simple requirement of a user inputting 5 integers (all at once) and I have to use division and the remainder function (%) to break them into 5 separate digits.
So if the user inputs 42339 I have to separate them out and display back
4 2 3 3 9 using only division and remainder functions to accomplish the breaking apart of the number. I have no clue where to start on this.
Answer : simple math programming question
looks like a school assignment. Here is the clue,
10 is the one used for diving and the reminder function for each time.
That is 42339 % 10 is 9
That is 4233 % 10 is 3
etc etc
Random Solutions
How to combine XML & PHP
"The local policy of this system does not permit you to logon interactively"
Table alignment in Dreamweaver
Network magic needed
How to find files for specific date and copy to other directories
User Account Control and SCCM Remote Tools Sessions
doc for code review
File formatting with AWK unix command??
My SQL queries take ages to cancel.
iPhone, how do I correctly pass data model object data between various view controllers without breaking MVC?