返回

取位

发布时间:2023-09-12 23:58:17 192


public static void main(String[] args) {
System.out.println("xxx:"+(30%3));
long n=1234567890;
System.out.println("个位 "+ (n % 10));
System.out.println("十位 "+ (n % 100)/10);
System.out.println("百位 "+ (n % 1000)/100);
System.out.println("千位 "+ (n %10000)/1000);
System.out.println("万位 "+ (n %100000)/10000);
System.out.println("十万位 "+ (n %1000000)/100000);
System.out.println("白万位 "+ (n %10000000)/1000000);
System.out.println("千万位 "+ (n %100000000)/10000000);
System.out.println("亿位 "+ (n %1000000000)/100000000);
System.out.println("十亿位 "+ (n %10000000000l)/1000000000l);
System.out.println(getGagTime(60*60*2+5));


}
个位 0
十位 9
百位 8
千位 7
万位 6
十万位 5
白万位 4
千万位 3
亿位 2
十亿位 1

秒转换为具体的时间。

public static String getGagTime(long secondCurrent) {
System.out.println(60*60);
long day=secondCurrent / (24 * 60 * 60) ;

long hour=secondCurrent % (24 * 60 * 60) / (60 * 60);
long minute=secondCurrent % (24 * 60 * 60) % (60 * 60) / 60;

long second=secondCurrent % (24 * 60 * 60) % (60 * 60) % 60;
StringBuffer sb=new StringBuffer();
if(day>0){
sb.append(day+"天");
}
if(hour>0){
sb.append(hour+"小时");

}

if(minute>0){
sb.append(minute+"分钟");
}

if(second>0){
sb.append(second+"秒");
}
return sb.toString();

}
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报
评论区(0)
按点赞数排序
用户头像
精选文章
thumb 中国研究员首次曝光美国国安局顶级后门—“方程式组织”
thumb 俄乌线上战争,网络攻击弥漫着数字硝烟
thumb 从网络安全角度了解俄罗斯入侵乌克兰的相关事件时间线