取位
大佬教我写程序 lv.1
发布时间: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();
}
文章来源: https://blog.51cto.com/u_15458814/5883461
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报