码迷,mamicode.com
首页 > 其他好文 > 详细

将千克转换成磅 Exercise05_03

时间:2018-12-25 14:28:09      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:rgs   stat   题目   调试   转换   static   span   exe   color   

 1 /**
 2  * @author 冰樱梦
 3  *题目:将千克转换成磅
 4  *时间:2018年下半年
 5  */
 6 public class Exercise05_03 {
 7     public static void main(String[] args){
 8         System.out.printf("%-30s %s\n","千克", "磅");
 9         for(int i=1;i<200;i++){
10             System.out.printf("%-10d %-10.1f\n",i,i*2.2);
11         }
12     }
13 }
14 //调试正确,稍微调整了一下宽

 

将千克转换成磅 Exercise05_03

标签:rgs   stat   题目   调试   转换   static   span   exe   color   

原文地址:https://www.cnblogs.com/cherrydream/p/10173613.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!