삼각형 구성 여 부 를 판단 하 는 프로그램 을 작성 하 다.

/*please write a program to check three number if can construct a tryaigle*/
#include 
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<>a>>b>>c;
	CheckTriangle one(a,b,c);
	one(a,b,c);
	system("pause");
	return 0;

}


좋은 웹페이지 즐겨찾기