zildjiean

แก้ไข ConverseWeight.java

Aug 5th, 2013
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.25 KB | None | 0 0
  1. class ConverseWeight{
  2.     public static void main(String[] args){
  3.         int kilo = 1;
  4.         double pound =0;
  5.         System.out.println("Kilograms"+" "+"Pound");
  6.             for(kilo=1;kilo<200;kilo++){
  7.                 pound = kilo * 2.2;
  8.                 System.out.println(kilo+" "+pound);
  9.             }
  10.     }
  11. }
Add Comment
Please, Sign In to add comment