java编程求修改~~

importjava.io.BufferedReader;importjava.io.File;importjava.io.FileInputStream;importj... import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;

public class FileTest {

/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
File file = new File(""/** 文件名 */
);
FileInputStream fis = new FileInputStream(file);
InputStreamReader isr = new InputStreamReader(fis);
BufferedReader br = new BufferedReader(isr);
String sb = "";
int count = 0;
sb = br.readLine();
while (sb != null) {
String[] array = sb.split(" "/** 文件分隔符 */
);
for (String string : array) {
if (string.equals("while")) {
count++;
}
}
sb = br.readLine();
}
System.out.println(count);
}
}

这个程序我只能记while的个数,如果想增加记int,void,for这些个数该怎么修改??
展开
 我来答
artintin
推荐于2016-04-19 · TA获得超过1.2万个赞
知道大有可为答主
回答量:7508
采纳率:80%
帮助的人:2856万
展开全部
加几个变量countwhile,countint,countvoid,countfor
将计数循环改为
for (String string : array) {
if (string.equals("while")) {
countwhile++;
}
if (string.equals("int")) {
countint++;
}
if (string.equals("void")) {
countvoid++;
}
if (string.equals("for")) {
countfor++;
} }
追问
如果我想用数组来记录个数,比如a[0]=countwhile,a[1]=coutint,该怎么添加?如何输出!!!
追答
将count定义为数组即可
int[] cout=new int[4];
将计数循环改为
for (String string : array) {
if (string.equals("while")) {
count[0]++;
}
if (string.equals("int")) {
count[1]++;
}
if (string.equals("void")) {
count[2]++;
}
if (string.equals("for")) {
count[3]++;
} }
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式