当前位置 : 主页 > 编程语言 > java >

求一个数字中位数最大值

来源:互联网 收集:自由互联 发布时间:2021-06-28
gistfile1.txt public class max {public static void main(String[] args){ int n=1584; int m= qiuzuida(n); System.out.println(m);}public static int qiuzuida(int n){int x=n;int max=x%10; while(x!=0){ x=x/10;if(max
gistfile1.txt
public class max {
public static void main(String[] args){
    int n=1584;  
int m=  qiuzuida(n); 
    System.out.println(m);
}
public static int qiuzuida(int n)
{
int x=n;
int max=x%10;
         while(x!=0)
{
     x=x/10;
if(max
上一篇:判断素数
下一篇:求20以内阶乘之和
网友评论