Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

check if number is multiple of 3 in php

You can check simply by using below code:
if($num%3==0){
  echo "the number is multiple of 3";
}
 
PREVIOUS NEXT
Tagged: #check #number #multiple #php
ADD COMMENT
Topic
Name
5+4 =