Board logo

標題: 這個Java程式又出了什麼問題 [打印本頁]

作者: 花之慶次    時間: 2008-8-17 17:12     標題: 這個Java程式又出了什麼問題

import java.io.*;
class Sample5_09
{
    public static void main(String args[])throws IOException
    {
        System.out.println("請問要在第幾次終止回圈呢??(1~10) ");
        BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
        String str=br.readLine();
        int res=Integer.parseInt(str);
       for(int i=1; int<=10; i++)
        {
           System.out.println("第" +i+ " 次的處理 ");
           if(i==res)
            break;
        }
    }
}

紅字部份就是出錯地方, 因為不能構成.class
作者: fredng    時間: 2008-8-17 21:20

引用:
原帖由 花之慶次 於 2008-8-17 17:12 發表
import java.io.*;
class Sample5_09
{
    public static void main(String args[])throws IOException
    {
        System.out.println("請問要在第幾次終止回圈呢??(1~10) ");
        BufferedReader br ...
for(int i=1; int<=10; i++)
not int "for (int i=1; int<=10; i++)"
should be for "(int i=1; i<=10; i++)"
作者: 花之慶次    時間: 2008-8-17 22:17

引用:
原帖由 fredng 於 2008-8-17 21:20 發表


not int "for (int i=1; int
好, 完全明白, 多謝你




歡迎光臨 香港 Xocat Forum 討論區 (http://p.xocat.com/p/) Powered by Discuz! 6.0.0