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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

哈哈,不要太难就行了。目前学到14课。请出题!

12 个回复

倒序浏览
你疯了吧{:2_32:}
回复 使用道具 举报

请出题!{:2_42:}
回复 使用道具 举报
{:2_30:}66666666666666
回复 使用道具 举报

哈哈,锻炼一下编程能力。
回复 使用道具 举报
{:2_30:}顶顶顶顶顶大大大
回复 使用道具 举报
有一只母猴子,请算出她八十年后有多少子孙,公母分别是多少。
回复 使用道具 举报
wusiyi 中级黑马 2016-2-19 19:32:00
8#
r1503882525 发表于 2016-2-17 20:41
有一只母猴子,请算出她八十年后有多少子孙,公母分别是多少。

{:2_31:}好难,在下服了。
回复 使用道具 举报
wusiyi 发表于 2016-2-19 19:32
好难,在下服了。

因为没有公猴子,答案是零
回复 使用道具 举报
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 + "月是冬季");
                }


        }
}
帮忙看看有没有什么问题
回复 使用道具 举报
楼上的   好像在哪见过这道题
回复 使用道具 举报
lixianglei 发表于 2016-3-1 23:10
import java.util.Scanner;
class Test6_If {
        public static void main(String[] args) {

else后面少个大括号啊
回复 使用道具 举报
输出这样的一个矩阵 1   2  3  4
                           10  11 12 5
                            9    8  7  6
如果能提取成方法 自定义行数和列数就更好了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马