写一个判断是否构成三角形的程序

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
/*please write a program to check three number if can construct a tryaigle*/
#include <iostream>
using namespace std;
 
class CheckTriangle
{
public:
    CheckTriangle(int x,int y,int z):a(x),b(y),c(z){}
    void operator()(int x,int y,int z);
private:
    int a,b,c;
};
void CheckTriangle::operator()(int x,int y,int z)
{
    if(x+y>z&&x+z>y&&y+z>x)
        cout<<"all right"<<endl;
    else
        cout<<"error"<<endl;
}
int main()
{
    int a,b,c;
    cout<<"please enter three number"<<endl;cin>>a>>b>>c;
    CheckTriangle one(a,b,c);
    one(a,b,c);
    system("pause");
    return 0;
 
}
上一篇:【干货合集】都说“精通C++”是个伪命题,那么本文只求让你深入了解一下这门编程语言


下一篇:Junit5套件执行