文章列表
import java.util.*;
public class Poj2039 {
public static void main(String[]args)
{
Scanner scanner = new Scanner(System.in);
while(true)
{
int w = Integer.parseInt(scanner.nextLine());
if(w == 0)
{
break;
}
String str = scanner.nextLine();
int len = ...
- 2008-11-25 22:19
- 浏览 981
- 评论(0)
poj2014简单的模拟题,发现敲代码速度很慢,思维不够灵活。
这道题目就是简单统计,平常时而用到类似的统计思想。
import java.util.*;
public class Main {//poj2014
public static void main(String[]args)
{
Scanner scanner = new Scanner(System.in);
int maxWidth;
while(true)
{
maxWidth = scanner.nextInt();
if(maxWidth==0)
...
- 2008-11-25 21:59
- 浏览 1040
- 评论(0)