C語言程式設計-現代方法 第二版 第2.5小節程式碼 計算箱子的空間重量改進版

我要的暱稱被註冊了發表於2020-12-12

第2.5小節程式碼,計算一個箱子空間重量的程式 ,由使用者輸入引數值,輸入引數限定為整型

//This is a comment
//Author:King
//Time:2020/12/4
//Reference:C Programming:A Modern Approach,Second Edition

/***************************************************************
2.5小節程式碼 計算一個箱子空間重量的程式 ,由使用者輸入變數的引數值 
輸入引數限定為整型
****************************************************************/

#include <stdio.h>

int main(void)
{
	int height,length,width,volume,weight;
	
	printf("Enter height of box:");
	scanf("%d",&height);
	printf("Enter length of box:");
	scanf("%d",&length);
	printf("Enter width of box:");
	scanf("%d",&width);

	volume =  height * length * width;
	weight = (volume +165) / 166;	//航空公司一種空間轉換為重量的演算法,用於計算價格
	
	printf("Volume (cubic inches):%d\n",volume);
	printf("Dimensions weight (pounds):%d\n",weight);
	
	return 0;
}

相關文章