A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.util.Scanner;
class Test6_If {
        public static void main(String[] args) {
                Scanner sc = new Scanner(System.in);
                System.out.println("请输入月份");
                int month = sc . nextInt();
                if ( month > 12 || month < 1) {
                        System.out.println("对不起没有相应的季节");
                }else if (month >= 3 && month <= 5 ) {
                        System.out.println(month + "月是春季");
                }else if ( month >= 6 && month <= 8) {
                        System.out.println(month + "月是夏季");
                }else if ( month >= 9 && month <= 11) {
                        System.out.println(month + "月是秋季");
                }else
                        System.out.primtln(month + "月是冬季");
                }


        }
}
为什么编译不过 出现需要 class.

4 个回复

倒序浏览
我试了一下,最后一行的println拼写有错,其他可以编译运行的
回复 使用道具 举报
我把println改过来了  为什么还不行  出现错误 需要 class呢?
回复 使用道具 举报
因为你最后一个else后面漏了一个大括号
回复 使用道具 举报
天赐潇潇 发表于 2016-3-2 03:28
因为你最后一个else后面漏了一个大括号

谢了  好像是多了一个 大括号
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马