lab3_141
#include <iostream>
using namespace std;
int main() {
double g1,g2,g3;
cout << "Input 3 growth value:"<<endl;
cin>>g1>>g2>>g3;
//checking for identical numbers
if(g1==g2 && g1==g3 && g2==g3)
{
cout<<"The growth is identical!!"<<endl;
}
else
{
cout<<"The growth is different!!"<<endl;
}
return 0;
}INFO