| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 417 人关注过本帖
标题:救教下面一个小问题,小弟是新学者。请教前辈们
取消只看楼主 加入收藏
yanzhiwei128
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2007-6-5
收藏
 问题点数:0 回复次数:0 
救教下面一个小问题,小弟是新学者。请教前辈们
import java.util.*;
public class TestVector {

/**
* Method main
*
*
* @param args
*
*/
public static void main(String[] args) {
int sum=0;
TestVector v=new TestVector();
System.out.println("please enter number");
while ( true )
{
int b=System.in.read();
if (b=='\r'||b=='\n')
break;
else
{
int num=b-'0';
v.add(new Integer(num) ) ;
}
}
// TODO: Add your code here
}

Enumeration e = v.element();
while(e.hasMoreElements())
{
Integer ww = (Integer) e.nextElement();
sum+=ww.valueOf();
}

System.out.println( sum );
}
import java.util.*;
public class TestVector {

/**
* Method main
*
*
* @param args
*
*/
public static void main(String[] args) {
int sum=0;
TestVector v=new TestVector();
System.out.println("please enter number");
while ( true )
{
int b=System.in.read();
if (b=='\r'||b=='\n')
break;
else
{
int num=b-'0';
v.add(new Integer(num) ) ;
}
}
// TODO: Add your code here
}

Enumeration e = v.element();
while(e.hasMoreElements())
{
Integer ww = (Integer) e.nextElement();
sum+=ww.valueOf();
}

System.out.println( sum );
}

调试时
while(e.hasMoreElements()) 提示本行:非法类型的开始
System.out.println( sum ); 提示:需要《标识符》
时怎么回事呢?
请教前辈们
谢谢


搜索更多相关主题的帖子: 前辈 学者 
2007-06-05 01:12
快速回复:救教下面一个小问题,小弟是新学者。请教前辈们
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.032400 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved