Computer Science, asked by arshiad09, 1 month ago

Write a program to print those 3 digit positive numbers which are multiples of 5 and 7​

Answers

Answered by ajb7899
0

Answer:

public class program

{

void main()

{

int(i = 100;i<=999;i++)

{ if(i%5 ==0 && i%7 ==0)

System.out.println(i);

}

}

}

If it helps Kindly mark it as brainliest giving 5 stars.

Answered by dekkshithajoyjoel
0

Explanation:

hope this helps u add me to brainlist

Attachments:
Similar questions