Computer Science, asked by sirisahasra31, 5 months ago

write a JavaScript program to accept a number and find out whether it is a multiple of 5 or 3 or 2​

Answers

Answered by krish16193
0

Answer:

uaf-bzrm-ydq join please

Answered by arvindanamika8
2

Answer:

import java .until.*;

class d

{

public static void main (String ar[])

{

Scanner sc = new Scanner (System.in);

int num = sc.nextInt();

if(num%5==0 // num%2==0//num%3==0)

{

System.out.println("it's multiple");

}

else

{

System.out.println("it's not multiple");

}

}

}

Similar questions