Write a program to print those 3 digit positive numbers which are multiples of 5 and 7
Answers
Answered by
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
0
Explanation:
hope this helps u add me to brainlist
Attachments:
Similar questions