+0  
 
0
637
1
avatar

How many integers n satisfy the condition 100 < n < 200 and the condition n has the same remainder whether it is divided by 6 or by 8?

 Oct 23, 2019
 #1
avatar
+1

n=100;b=200; c=0;if(n%6==n%8, goto loop, goto next);loop:printn," ",;c=c+1; next:n++;if(n

 

 

n = 100  101  120  121  122  123  124  125  144  145  146  147  148  149  168  169  170  171  172  173  192  193  194  195  196  197  Total = 26

 Oct 23, 2019
edited by Guest  Oct 23, 2019

1 Online Users