+ 1
Program to find the remainder when 1000 is divided by 3
5 Réponses
+ 31
complete more lessons you'll find it out yourself -_-
+ 17
cout << 1000%3;
lol?
+ 12
Just in case:
program for addition: +
sytax: number + number
output: sum
level: kindergarden
+ 5
Its very difficult. Nice ques BTW. This will be the perfect ques to test my skills. 😂
+ 2
To find the remainder of an integer value ,
use the modulus operator , it will yield the remainder of the division.
For example to find the remainder of 10 / 3 :
x = 10 % 3 ;
X is assigned to remainder of 10 / 3 .
x = 1 ;