if-else

来源:互联网 发布:swf文件mac用什么打开 编辑:程序博客网 时间:2024/06/16 20:38
import java.util.Scanner;public class IfElse6 {public static void main(String[] args) {// TODO Auto-generated method stubScanner in=new Scanner(System.in);System.out.println("请输入一个整数:");int q=in.nextInt();int c=50;int d=0;if(q>c&&q<127)System.out.println("金鳞岂是池中物,一遇风云变化龙。");else if(q>d&&q<=c)System.out.println("春风得意马蹄疾,一日看尽长安花。");else if(q>-128&&q<=0)System.out.println("万里长城万里空,百世英雄百世梦。");elseSystem.out.println("你的输入有误!");}}

原创粉丝点击