Questions tagged [mod]

For questions related with the *mod operation*, that can arise in Cryptography, Number Theory, Hashing, etc..

In computing, the modulo operation finds the remainder after division of one number by another (sometimes called modulus). Given two positive numbers, a (the dividend) and n (the divisor), a modulo n (abbreviated as a mod n) is the remainder of the Euclidean division of a by n.

437 questions
-8
votes
1 answer

How to use MOD function in C#

I've got this code writted on VB.NET and I want to transform it to C# I really dont know how to convert the MOD funciont without any error using %... For f = 0 To 7 For c = 0 To 7 If (((c Mod 2) <> 0 AndAlso (f Mod 2) = 0)…
Flor Santoni
  • 33
  • 1
  • 5
1 2 3
29
30