Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,011 questions

51,958 answers

573 users

How to convert meters to yards and vice versa in Java

1 Answer

0 votes
public class ConvertUnits {

    private static final double METER_TO_YARD = 1.0936133;
    private static final double YARD_TO_METER = 0.9144;

    public static double metersToYards(double meters) {
        return meters * METER_TO_YARD;
    }

    public static double yardsToMeters(double yards) {
        return yards * YARD_TO_METER;
    }

    public static void main(String[] args) {
        double m = 10.0;
        double y = metersToYards(m);
        System.out.printf("%.2f meters = %.6f yards%n", m, y);

        double y2 = 10.0;
        double m2 = yardsToMeters(y2);
        System.out.printf("%.2f yards = %.6f meters%n", y2, m2);
    }
}


/*
run:

10.00 meters = 10.936133 yards
10.00 yards = 9.144000 meters

*/

 



answered 4 hours ago by avibootz
...