- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学校的一本书中做一些编程练习,练习是关于确定用户输入的边是否指示它是否是直角三角形。
要弄清楚你必须做勾股定理,即 a^2 + b^2 = c^2。我写了一个 if
语句询问 if (side1 * side1) + (side2 * side2) = (side3 * side3) 那么它是一个直角三角形,如果不是我写了一个 else
声明打印它不是直角三角形。下面是我写的代码。
#include <iostream>
#include <string>
#include <iomanip>
using namespace std;
int main() {
int side1=0, side2=0, side3=0;
cout << "Enter the first side of the triangle: " << endl;
cin >> side1;
cout << "Enter the second side of the triangle: " << endl;
cin >> side2;
cout << "Enter the third side of the triangle: " << endl;
cin >> side3;
if ((side1 * side1) + (side2 * side2) == side3 * side3)
{
cout << "It is a right angled triangle" << endl;
exit(1);
}
else
{
cout << "It is not a right angled triangle" << endl;
exit(1);
}
return 0;
}
最佳答案
您应该按顺序对长度进行排序,因为 C 必须是斜边(最长边)才能使毕达哥拉斯定理起作用。在 std::array 中收集整数并使用 std::sort,如下所示:
#include <iostream>
#include <string>
#include <algorithm>
#include <array>
using namespace std;
int main(){
array<int,3> side;
cout << "Enter the first side of the triangle: " << endl;
cin >> side[0];
cout << "Enter the second side of the triangle: " << endl;
cin >> side[1];
cout << "Enter the third side of the triangle: " << endl;
cin >> side[2];
std::sort( begin(side), end(side) );
if ((side[0] * side[0]) + (side[1] * side[1]) == side[2] * side[2])
{
cout << "It is a right angled triangle" << endl;
}
else
{
cout << "It is not a right angled triangle" << endl;
}
return 0;
}
关于c++ - 为什么我的代码一直跳过我的 else 语句用于 C++?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61671525/
我有一个在 Android 市场上相当流行的应用程序,它允许数以万计的用户按下一个按钮并向它发出语音命令。然后我就可以做很多不同的事情,比如给他们提供当前的天气预报等等...... 无论如何,我的应用
令人惊讶的是,标题基本上解释了它。我们有一个我们的客户制作的页面,我们正在重新创建该页面。 页面高度会一直增加,直到(我假设是这样)浏览器达到它的极限。我已经尝试过 Firebug 和 W3 验证器,
我是 react-native 的新手,试图创建我自己的组件,但它一直显示一个空屏幕。 这是我的组件代码 class BoxComponent extends Component { cons
我正在为我的 PHP 元素创建一个非常简单的博客,但遇到了一个简单的问题。我无法让我的页眉图像一直 float 。我有一个横幅,左边有一些文字,我有一个 1px 的切片,在可以选择的任何分辨率的宽度上
为什么我可以在另一个 Controller 的 View 中访问一个 Controller 的辅助方法?有没有办法在不破解/修补 Rails 的情况下禁用它? 最佳答案 @George Schreib
我正在使用带有最新 ADT 插件的 Eclipse Kepler SP2。每隔一分钟 Eclipse 就会说“为 Android 4.4.2 加载数据”并阻止我想做的一切。我在不同的文件夹中有几个 E
我是一名优秀的程序员,十分优秀!