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 C++

1 Answer

0 votes
#include <iostream>
#include <iomanip>

constexpr double METER_TO_YARD = 1.0936133;
constexpr double YARD_TO_METER = 0.9144;

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

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

int main() {
    double m = 10.0;
    double y = metersToYards(m);

    std::cout << std::fixed << std::setprecision(1);
    std::cout << m << " meters = " << y << " yards\n";

    double y2 = 10.0;
    double m2 = yardsToMeters(y2);

    std::cout << y2 << " yards = " << m2 << " meters\n";
}



/*
run:

10.0 meters = 10.9 yards
10.0 yards = 9.1 meters

*/

 



answered 5 hours ago by avibootz
...