+ 4
Is the % a division sign???
13 ответов
+ 6
no, it is modulo sign.
The % operator returns the remainder of two numbers. For instance 10 % 3 is 1 because 10 divided by 3 leaves a remainder of 1.
+ 6
% is the modulo operator 🤥.
it is used to find the reminder . 🙂
example : 4%2 =0 and 4%3=1.
+ 5
% is a modulo operator that returns the remainder of two numbers that are divided unequally.
If the numbers are divided equally then remainder would be Zero.
5 % 2 = 1
4 % 2 = 0
+ 4
If modulo (a,b) was a program it would perform a = a - abs(b) (where b is the positive value of b) for a positive value of a until a was less than b. For a negative value of a, it would perform a= a+abs(b) until a was greater than b.
+ 3
It's the modulo sign. It gives you the remainder when a number is divided by some number.
1.In C language it is used in the format specifier.
2.In Python language it is used as a format operator.
+ 3
Example :
A = 4/2
B = 4%2
Result:
A=2
B=0
/ is division
% is modulo
+ 2
in what term you are asking
% -division
%- int value in c and c++
%- percentile
+ 2
\ is division % is modulo
+ 2
Thats a Modulo.
+ 2
no its a modulo sign which is used to get reminder after division
+ 2
is reminder and madulo are same!?
+ 2
ya modulo is used to get reminder
+ 2
no it is a modulas sign it show remainder in programming language