31 lines
630 B
Java
31 lines
630 B
Java
/*
|
||
Description
|
||
X是一个勤劳的小孩,总是会帮助大人做家务。现在他想知道对于一根长为L的绳子能晾开多少件宽为W的衣服,显然这些衣服不能相互叠压。
|
||
Input
|
||
多组输入。
|
||
每组输入两个整数L,W。
|
||
Output
|
||
输出答案。
|
||
Sample
|
||
Input
|
||
10 5
|
||
10 4
|
||
Output
|
||
2
|
||
2
|
||
*/
|
||
import java.util.Scanner;
|
||
public class Main
|
||
{
|
||
public static void main(String [] args)
|
||
{
|
||
Scanner in = new Scanner(System.in);
|
||
int L,W;
|
||
while(in.hasNextInt())
|
||
{
|
||
L=in.nextInt();
|
||
W=in.nextInt();
|
||
System.out.printf("%d\n",L/W);
|
||
}
|
||
}
|
||
} |