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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© heima910442999 中级黑马   /  2016-1-14 18:24  /  476 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. ###03.17_Java语言基础(选择结构if语句格式3练习)(掌握)
  2. * A:练习1
  3. *
  4.                 需求:键盘录入一个成绩,判断并输出成绩的等级。
  5.                 90-100 优
  6.                 80-89  良
  7.                 70-79  中
  8.                 60-69  及
  9.                 0-59   差
  10.                
  11. import java.util.Scanner;
  12. class Test1_If {
  13.         public static void main (String [] args){
  14.                 Scanner sc =new Scanner (System.in);
  15.         //需求:键盘录入一个成绩,判断并输出成绩的等级.
  16.          System.out.println("请输入学生成绩范围在1到100之间");
  17.          int x = sc.nextInt();
  18.          if (x>= 90 && x <=100) {
  19.                  System.out.println("优");
  20.          }else if (x >= 80 && x <= 89) {
  21.                  System.out.println("良");
  22.          }else if (x >= 70 && x <= 79) {
  23.                  System.out.println("中");
  24.          }else if (x >= 60 && x <= 69) {
  25.                  System.out.println("及格");
  26.          }else if (x >= 0 && x <= 59) {
  27.                  System.out.println("差");
  28.          }else {
  29.                  System.out.println("成绩录入错误")

  30.          }
  31.          }
  32.         }
  33. }
  34. * B:练习2
  35.         * 需求:
  36.                 * 键盘录入x的值,计算出y的并输出。
  37.                
  38.                 * x>=3        y = 2 * x + 1;
  39.                 * -1<x<3        y = 2 * x;
  40.                 * x<=-1        y = 2 * x - 1;

  41. import java.util.Scanner;
  42. class Test1_If {
  43.         public static void main (String [] args){
  44.                 Scanner sc =new Scanner (System.in);
  45.                 System.out.println("请输入一个整数;");
  46.                 int x = sc . nextInt();
  47.                 int y;
  48.                 if (x >= 3) {
  49.                         y = 2 * x + 1;
  50.                 }else if (x. -1 && x < 3) {
  51.                         y = 2 * x;
  52.                 }else if (x <= -1) {
  53.                         y = 2 * x - 1
  54.                 }
  55.                
  56.                 System.out.println(y);

  57.                 }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马