How I can Write a program In C++ that uses a function multiple(int,int) that determines for a pair of integers whether the second integer is a multiple of the first. The function should take two integer arguments and return 1 (true) if the second is a multiple
of the first and 0 (false) otherwise. Use this function in a program that inputs a
series of pairs of integers. What is the source code of this in C++?
2007-02-03
17:45:29
·
3 answers
·
asked by
Ahsan Z
1
in
Computers & Internet
➔ Programming & Design