PDA

View Full Version : Print Remainder


carterw
May23-04, 02:28 PM
Hello.

I would like to write a program into which I can input any number, say 11133, and divide this by a list of numbers, say 543, 345, 2368...
and have the program print the list of results, integers only, with the remainder.

I imagine this is a fairly simple program to write, but I am still unfamiliar as yet with what steps to take to begin. Would anyone be able to help. Thanks in advance.

Dan

chroot
May23-04, 03:05 PM
First, select a language.

- Warren

carterw
May25-04, 08:57 PM
Hi Warren,

Thanks,
I have started using a '94 version of C++,
are you familiar with this?
I managed to get a useful program working.

Two problems though that I have not been able to find solutions to yet.

1) How do i get it so the program resets at the press of a button so I don't have to keep exiting and entering again?

2) Even though I am using "long" integers throughout, the program will not print values better than about 250 000. beyond this I just get garbled data.

Thanks,
Dan

force5
Jun8-04, 11:25 PM
carterw,

If C++ is your language of choice and you don't have a manual explaining the coding requirements, then I would recomend that you do that first. You don't have to read the book from cover to cover, but, understand the overall methodology of the language and focus on the sections that address the specific functions you need. Anytime spent learning a language such as an all purpose tool like C++, is time well spent.

You are right. Once you review the manual, this job should take only a few minutes to complete.