Conversion of feet/inches to meters-英尺、英里装换为米

Conversion of feet/inches to meters-英尺、英里装换为米,允许重复计算:

//Conversion of feet/inches to meters-英尺、英里装换为米,允许重复计算
#include<iostream>
#include<cmath>

using namespace std;

void get_input(double& feet,double& inch);
double convert(double& feet,double& inch,double& meter);
void output(double meter);

int main()
{
    double feet,inch,meter;
    char ans;
    
    do{
        get_input(feet,inch);
        convert(feet,inch,meter);
        output(meter);
        
        cout<<"Do you want again?";
        cin>>ans;
    }while(‘y‘ == ans || ‘Y‘ == ans);
    
    return 0;
}

void get_input(double& feet,double& inch)
{
    cout<<"Enter the feet and the inch:\n";
    cin>>feet>>inch;
}

double convert(double& feet,double& inch,double& meter)
{
    double tem;
    tem = feet + inch / 12;
    meter = tem * 0.3048;
    
}

void output(double meter)
{
    cout.setf(ios::fixed);
    cout.setf(ios::showpoint);
    cout.precision(2);
    cout<<"The result is "<<meter<<"m"<<endl;
}

结果:

Enter the feet and the inch:
5 7
The result is 1.70m
Do you want again?y
Enter the feet and the inch:
245 0
The result is 74.68m
Do you want again?
时间: 2024-10-14 08:31:20

Conversion of feet/inches to meters-英尺、英里装换为米的相关文章

Exercise 2.1 Convert inches to yards, feet, and inches

Exercise 2-1. Write a program that prompts the user to enter a distance in inches andthen outputs that distance in yards, feet, and inches. (For those unfamiliar with imperialunits, there are 12 inches in a foot and 3 feet in a yard.) #include <stdio

英尺转换米

import javax.swing.JOptionPane; public class Foot { public static void main(String[] srgs){ String input = JOptionPane.showInputDialog(null,"请输入米数:","输入框",JOptionPane.QUESTION_MESSAGE); double feet = Double.parseDouble(input); System.o

2.3将英尺转化为米数.py

# -*- coding: utf-8 -*- """ Created on Sun Apr 22 16:20:42 2018 @author: MyPC """ def main(): ''' 将英尺转化为米数. 公式: 一英尺等于0.305米 ''' feet = eval(input("input feet:")) meters = feet*0.305 print("%.2f feet is %.4f met

[转] PHP计算两个坐标之间的距离, Calculate the Distance Between Two Points in PHP

Calculate the Distance Between Two Points in PHP There are a lot of applications where it is useful to know the distance between two coordinates. Here, you'll find a PHP function that takes the latitude and longitude of two points and returns the dis

php LBS(附近地理位置)功能实现的一些思路

在开发中经常会遇到把数据库已有经纬度的地方进行距离排序然后返回给用户 例如一些外卖app打开会返回附近的商店,这个是怎么做到的呢? 思路一: 根据用户当前的位置,用计算经纬度距离的算法逐一计算比对距离,然后进行排序.这里可以参考下面这个算法: <?php /** * 查找两个经纬度之间的距离 * * @param $latitude1 float 起始纬度 * @param $longitude1 float 起始经度 * @param $latitude2 float 目标纬度 * @para

进击的雨燕-------------扩展

详情转自:http://wiki.jikexueyuan.com/project/swift/chapter2/07_Closures.html 扩展就是向一个已有的类.结构体.枚举类型或者协议类型添加新功能(functionality).这包括在没有权限获取原始源代码的情况下扩展类型的能力(即逆向建模).扩展和 Objective-C 中的分类(categories)类似.(不过与 Objective-C 不同的是,Swift 的扩展没有名字.) Swift 中的扩展可以: 添加计算型属性和计

【转】46 个非常有用的 PHP 代码片段

1. 发送 SMS 在开发 Web 或者移动应用的时候,经常会遇到需要发送 SMS 给用户,或者因为登录原因,或者是为了发送信息.下面的 PHP 代码就实现了发送 SMS 的功能. 为了使用任何的语言发送 SMS,需要一个 SMS gateway.大部分的 SMS 会提供一个 API,这里是使用 MSG91 作为 SMS gateway. ? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29

java语言程序设计基础课后习题第二章

1 //exercise 2.2 2 package secondchapterexercise1; 3 4 public class first01 { 5 6 public static void main(String[] args) { 7 // TODO Auto-generated method stub 8 double miles=100; 9 double KILOMETERS_PER_MILE=1.609; 10 double kilometers=miles*KILOMET

C语言及程序设计 例程 - C语言程序初体验

让程序会计算:求a和b两个数之和 #include <stdio.h> int main( ) {     int a,b,sum;     scanf("%d %d", &a, &b);     sum=a+b;     printf("%d\n", sum);     return 0; } 用户界面友好(或罗里罗嗦)的程序 #include <stdio.h> int main( ) {     int a,b,sum;