• Dhatri Nath Kodali
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 1
    Replies
public class MOperators              {
      public void main()          {

            integer x =  42       ;
            double y =  42.25  ;

     system.debug('x MOD 10 = ' + math.mod (x,10));
     system.debug('y MOD 10 = ' + math.mod (y,10));

       }

}

 
public class MOperators              {
      public void main()          {

            integer x =  42       ;
            double y =  42.25  ;

     system.debug('x MOD 10 = ' + math.mod (x,10));
     system.debug('y MOD 10 = ' + math.mod (y,10));

       }

}