| 1 | import java.util.Scanner; |
| 2 | |
| 3 | public class Main { |
| 4 | public static void main(String[] args) { |
| 5 | int num = 1; |
| 6 | while(true){ |
| 7 | if(num % 5 == 0 && num % 7 == 0){ |
| 8 | System.out.println(num); |
| 9 | break; |
| 10 | } |
| 11 | num++; |
| 12 | } |
| 13 | } |
| 14 | } |
nothing calls this directly
no outgoing calls
no test coverage detected