| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 420 人关注过本帖
标题:为什么不能运行?
只看楼主 加入收藏
huzi01245
Rank: 1
等 级:新手上路
帖 子:8
专家分:0
注 册:2007-3-24
收藏
 问题点数:0 回复次数:3 
为什么不能运行?

import java.io.*;
public class tongji {

public static void main(String[] args) //throws IOException
{
String str1,str2,str3,str4,str5;
int x=0,z=0,i=0,y=0;
int a[]=new int[5];
BufferedReader buf;
buf=new BufferedReader(new InputStreamReader(System.in));
System.out.print("输入成绩:");
str1=buf.readLine();
a[0]=Integer.parseInt(str1);
System.out.print("输入成绩:");
str2=buf.readLine();
a[1]=Integer.parseInt(str2);
System.out.print("输入成绩:");
str3=buf.readLine();
a[2]=Integer.parseInt(str3);
System.out.print("输入成绩:");
str4=buf.readLine();
a[3]=Integer.parseInt(str4);
System.out.print("输入成绩:");
str5=buf.readLine();
a[4]=Integer.parseInt(str5);
do
{
if (a[i]<0 || a[i]>100)
//JOptionPane.showMessageDialog(null, "shurucuowu!");
System.out.print("输入错误!");
if (a[i]>=0 && a[i]<60)
x=x+1;
if (a[i]>=60 && a[i]<=75)
y=y+1;
if (a[i]>75 && a[i]<=100)
z=z+1;
i++;
}while(i<5);
System.out.println("A="+z);
System.out.println("B="+y);
System.out.println("C="+x);
}


}
可以正常运行。但是下面的就不运行

import java.io.*;
public class tongji {

public static void main(String[] args) //throws IOException
{
String str1,str2,str3,str4,str5;
int x=0,z=0,i=0,y=0;
int a[]=new int[5];
BufferedReader buf;
buf=new BufferedReader(new InputStreamReader(System.in));
System.out.print("输入成绩:");
str1=buf.readLine();
a[0]=Integer.parseInt(str1);
System.out.print("输入成绩:");
str2=buf.readLine();
a[1]=Integer.parseInt(str2);
System.out.print("输入成绩:");
str3=buf.readLine();
a[2]=Integer.parseInt(str3);
System.out.print("输入成绩:");
str4=buf.readLine();
a[3]=Integer.parseInt(str4);
System.out.print("输入成绩:");
str5=buf.readLine();
a[4]=Integer.parseInt(str5);
while(i<5)
{
if (a[i]<0 || a[i]>100)
System.out.print("输入错误!");
if (a[i]<60)
x=x+1;
if (a[i]>=60 && a[i]<=75)
y=y+1;
if (a[i]>75)
z=z+1;
i++;
}
System.out.println("A="+z);
System.out.println("B="+y);
System.out.println("C="+x);
}


}

搜索更多相关主题的帖子: 运行 
2007-03-27 20:27
风月_无边
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:60
帖 子:2960
专家分:652
注 册:2007-1-19
收藏
得分:0 
你没有捕获异常,怎么会正常运行?

我的网站 http://www.
2007-03-27 20:35
千里冰封
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:灌水之王
等 级:版主
威 望:155
帖 子:28477
专家分:59
注 册:2006-2-26
收藏
得分:0 
基本的异常处理问题

当有非运行时异常的时候,需要做如下两点中的一点:
1,你的方法声明抛出这个异常
2,你在方法里面用 trycatch块捕获并处理可能抛出的异常

可惜不是你,陪我到最后
2007-03-28 10:14
hwj20070118
Rank: 1
等 级:新手上路
帖 子:94
专家分:0
注 册:2007-1-18
收藏
得分:0 

有关I/O操作的,都要捕抓异常,或抛出异常.

2007-04-06 23:08
快速回复:为什么不能运行?
数据加载中...
 
   



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

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