(String[] args)
| 18 | */ |
| 19 | class ForTest6 { |
| 20 | public static void main(String[] args) { |
| 21 | //����һ��ͳ�Ʊ����� |
| 22 | int count = 0; |
| 23 | |
| 24 | //1-1000֮����������˷�Χ����forѭ�����Խ�� |
| 25 | for(int x=1; x<=1000; x++) { |
| 26 | //����� |
| 27 | if(x%3==2 && x%5==3 && x%7==2) { |
| 28 | //System.out.println(x); |
| 29 | count++; |
| 30 | } |
| 31 | } |
| 32 | |
| 33 | System.out.println("����"+count+"����������������"); |
| 34 | } |
| 35 | } |
nothing calls this directly
no outgoing calls
no test coverage detected