判断三个数中的中间数_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > 判断三个数中的中间数

判断三个数中的中间数

 2011/12/28 17:55:36  Kent_Mu  http://kent-mu.iteye.com  我要评论(0)
  • 摘要:packagecom.astar.cop.dao;importjava.util.Scanner;publicclasstest{publicstaticvoidmain(Stringargs[]){Scannersc=newScanner(System.in);inta=sc.nextInt();intb=sc.nextInt();intc=sc.nextInt();intm,n,k;m=(a>b?b:a);if(a>b)m=b;elsem=a;if(m>c)k=m
  • 标签:
package com.astar.cop.dao;

import java.util.Scanner;

public class test {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int a = sc.nextInt();
int b = sc.nextInt();
int c = sc.nextInt();
int m, n, k;
m = (a > b ? b : a);
if (a > b)
m = b;
else
m = a;
if (m > c)
k = m;
else {
n = (a > b ? a : b);
if (n > c)
k = c;
else
k = n;
}
System.out.println(k);
}
}
  • 相关文章
发表评论
用户名: 匿名