摘要: import java.util.*;class work{public static void main (String args[]){Scanner reader=new Scanner (System.in);int mul=1;while(reader.hasNextInt()){int x=reader.nextInt();mul=mul*x;}System.out.printf("%d个数的积为%f\n",mul);}} 阅读全文
posted @ 2013-03-07 22:31 崔琪同学 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 在我配置环境变量的时候,直接将地址粘贴了过来,就没有配置上。后来我仔细查阅书才发现,忘记加了个分号;于是加了个分号,就安装上了。 阅读全文
posted @ 2013-03-07 22:13 崔琪同学 阅读(84) 评论(3) 推荐(4) 编辑