- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我创建了一个程序,您可以在其中输入行驶的英里数和每 jar 油使用的加仑数,该程序会显示每 jar 油的 mpg。我使用的是 Visual Studio 2010。当我输入标记值 -1 时,系统会给出整体 mpg。这是我的代码:
/* Name
Lab 3 - Page 105, 3.16
September 23th, 2015
Page 2 of 3 */
#include "stdafx.h"
#include <iostream>
#include <stdio.h>
// function main begins program execution
int main( void )
{
// initialization phase
unsigned int counter = 0; // number of tanks used
float gallons = 0; // gallons
float miles = 0; // miles
float milesPerGallon = 0; // MPG
float allTankMPG = 0; // sum of all tanks (MPGs)
float averageMPG = 0; // average MPG of all tankfuls
// processing phase
// get first tankful information
printf( "%s", "Enter the gallons used (-1 to end): " ); // prompt for gallons used
scanf( "%f", &gallons ); // read gallons input from user
// loop while sentinel value not yet read from user
while ( gallons != -1 ) {
printf( "%s", "Enter the miles driven: " ); // prompt for miles driven
scanf( "%f", &miles ); // read miles input from user
milesPerGallon = miles / gallons; // miles per gallon for the tank
printf("%s%.6f\n\n", "The miles/gallon for this tank was: ", milesPerGallon ); // display milesPerGallon
counter = counter + 1; // increment counter
allTankMPG = allTankMPG + milesPerGallon; // add the miles per gallon the sum total of every tank's mpg
// get next tankful information
printf( "%s", "Enter the gallons used (-1 to end): " ); // prompt for gallons used
scanf( "%f", &gallons ); // read input of the next gallon from user
} // end while
// termination phase
// if user entered at least one set of information for one tankful
if ( counter != 0 ) {
// calculate average MPG of all tankfuls
averageMPG = (float) allTankMPG / counter; // avoid truncation
// display average with six digits of precision
printf( "\n%s%.6f\n\n", "The overall average miles per gallon was ", averageMPG );
} // end if
system( "pause" );
return 0;
} // end function main``
我的输出看起来像这样:
这个油箱的英里/加仑是:22.421875
输入使用的加仑数(-1 到结束):10.3
这个油箱的英里/加仑是:19.417475
输入使用的加仑数(-1 到结束):5
这个油箱的英里/加仑是:24.000000
输入使用的加仑数(-1 到结束):-1
总体平均每加仑英里数为 21.946449
按任意键继续。 . .
现在根据这本书,当输入完全相同的输入时,整体平均 MPG 应该是 21.601423,而不是 21.946449。任何人都可以详细说明为什么我的输出略有下降吗?谢谢,非常感谢。
最佳答案
这本书要你计算整个行程中每加仑的平均英里数,而不是无论长度如何的腿的平均加权平均值。为此,保留总英里数和总加仑数之和。
顺便说一句,以 double 进行计算是个好主意,即使您存储在 float 中也是如此。这最大限度地减少了舍入误差。
关于c++ - 整体 MPG 的输出略微关闭 (Visual C++),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32802017/
我正在阅读Head First Design Patterns一书,在第382页上说: Composite Patterns is used when you have collection of o
我将我的电脑用作 wifi 热点,并将其他设备连接到它。然后使用wireshark,我可以看到特定设备上发送/接收的数据包,但是我怎样才能看到设备正在查看的完整网页而不是单独的数据包? 最佳答案 尝试
在 URL 中打开我的 Jenkins 时,我似乎无法登录它会抛出消息“用户缺少整体/读取权限”。我试过answer来自类似的问题,但禁用安全性不起作用。 Jenkins 继续抛出错误。有人建议我一起
我已经使用工具分配测试了我的应用程序并得到了这张图片: 如图所示,我的应用程序正常工作,但它通常以总字节数计值吗?我担心“#Allocations (Net/Overall)”,因为它的颜色是红色。这
我遵循教程 Deployment on Tomcat without modification of monitored webapps (beta) .监控站点正在运行,我可以看到统计页面。问题是
所以我有一个 div,其中整个东西都是一个 anchor 标记,我试图控制颜色在悬停时的显示方式并获得不同的结果。希望我能用 CSS 做到这一点。发生的事情是悬停,一个文本发生变化,但另一个没有。但是
我创建了一个程序,您可以在其中输入行驶的英里数和每 jar 油使用的加仑数,该程序会显示每 jar 油的 mpg。我使用的是 Visual Studio 2010。当我输入标记值 -1 时,系统会给出
我有一个由 N 个节点组成的 zookeeper 集群(彼此了解)。如果我在 zk 客户端连接字符串中只传递 M < N 个节点地址怎么办?集群的行为是什么? 在更具体的情况下,如果我只从集群中传递
我一直在试图弄清楚当使用诸如 pushViewController:animated、presentModalViewController:animated 和 UITabBarViewControl
我已经在 VIM 中安装了 minikube,并且我拥有具有所有权限的服务帐户 token 。是否有来自 kubernetes 的 API 来获取资源使用情况(总体)。 最佳答案 要获取 CPU 和内
如何通过 HTTP 客户端(例如 CURL、Insomnia、Postman 等)快速使用使用 JWT token 的 JHipster 生成的应用程序? 最佳答案 嗯,我研究了一段时间,发现你必须遵
我是一名优秀的程序员,十分优秀!