标签:style blog ar color os sp java on 数据
描述1、2、3… …n这n(0<n<=1000000000)个数中有多少个数可以被正整数b整除。
2 1
5 3
10 4
2
1
2
1 import java.util.Scanner; 2 3 public class Main { 4 public static void main(String[] args) { 5 Scanner scanner=new Scanner(System.in); 6 7 int n; 8 int b; 9 10 while(scanner.hasNext()){ 11 n=scanner.nextInt(); 12 b=scanner.nextInt(); 13 System.out.println(n/b); 14 } 15 } 16 }
标签:style blog ar color os sp java on 数据
原文地址:http://www.cnblogs.com/zqxLonely/p/4133139.html