Changes

Jump to navigation Jump to search
add note on extraneous complexity of arabic plural equation
Line 52: Line 52:  
plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;  
 
plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;  
    +
:''note that this is more complex than necessary as ''"&& n%100<=99"'' could be omitted without effect)''
    
Russian:
 
Russian:
11

edits

Navigation menu