Without using /,% ,+and * operators. write a function to check whether a number is divisible by 3 or nor??
Loading
Without using /,% ,+and * operators. write a function to check whether a number is divisible by 3 or nor??
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Francis SusaimichaelPosted Nov 2, 2015, 1:16 AM
Francis SusaimichaelPosted Nov 1, 2015, 5:06 PM
bool isDivisible = false;
while(iInput > 0)
{
}
if(!isDivisible)
Console.WriteLine("Not Divisible");
else
Console.WriteLine("Divisible");