Horje
150 pound in kg Code Example
150 pound in kg
let pound = 1;
let kilogram = 0.453592;
150 pound in kg

import java.text.DecimalFormat;

public class mian55 {

    public static void main(String[] args) {
        System.out.println(" Kilograms  Pounds   |   Pounds   Kilograms");

        int kgs = 1;
        int lbs = 20;
        for (; kgs < 200 && lbs < 516; kgs += 2, lbs += 5){
            DecimalFormat decimal = new DecimalFormat("#.0");   
            System.out.println(String.format(" %7d  %7s    | %7d  %7s",
                    kgs, decimal.format(kgs * 2.2), lbs, decimal.format(lbs / 2.2)));
        }
    }
}





Javascript

Related
boot5 Separate Code Example boot5 Separate Code Example
map function in react Code Example map function in react Code Example
Boilerplate node js server Code Example Boilerplate node js server Code Example
remove node modules command windows Code Example remove node modules command windows Code Example
auto closing parenthese not working on vscode Code Example auto closing parenthese not working on vscode Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8