标签: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 //调试正确,稍微调整了一下宽
标签:rgs stat 题目 调试 转换 static span exe color
原文地址:https://www.cnblogs.com/cherrydream/p/10173613.html