With C++ console-based how do i create two random numbers consisting of three digits each to be added in columnar format? | Sololearn: Learn to code for FREE!
0

With C++ console-based how do i create two random numbers consisting of three digits each to be added in columnar format?

Then prompt user to enter answer and if answer is correct to say correct and if not to say not correct.

27th Feb 2017, 4:14 AM
Gerso Guillen
Gerso Guillen - avatar
1 Odpowiedź
+ 1
int num = rand()% 900 +100; num should be [(0+100), (899+100)] so a 3 digit number. in num = 593 to get 5, num/100 to get 9, (num/10)%10 to get 3, num%10 not sure what "adding in columnar format" is if you do and still need help. please reply more specific task! hope this helps!!
28th Feb 2017, 7:00 AM
Michael Szczepanski
Michael Szczepanski - avatar