0
(Python)S=11 K=? print=(S%K) output: 5.
3 Respostas
+ 2
e.g. s=11 k=6 print=(s%k) output: 5
(process: 11/6 has a remainder 5 so the output is 5)
% is Modulus operator, which output the remainder of the division.
+ 2
Sorry to say but your question is incomplete
S and K must be assigned any integer values