Program to find the remainder when 1000 is divided by 3 | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Program to find the remainder when 1000 is divided by 3

6th Mar 2017, 4:21 PM
adithya
5 Answers
+ 31
complete more lessons you'll find it out yourself -_-
6th Mar 2017, 4:30 PM
Frost
Frost - avatar
+ 17
cout << 1000%3; lol?
6th Mar 2017, 4:30 PM
Hatsy Rei
Hatsy Rei - avatar
+ 12
Just in case: program for addition: + sytax: number + number output: sum level: kindergarden
6th Mar 2017, 4:41 PM
Kamil
Kamil - avatar
+ 5
Its very difficult. Nice ques BTW. This will be the perfect ques to test my skills. 😂
6th Mar 2017, 6:06 PM
Meharban Singh
Meharban Singh - avatar
+ 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 ;
6th Mar 2017, 6:16 PM
handerson scott
handerson scott - avatar