Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab3_141

Snippet info

Language

Cpp

Visibility

public

Author

matho.camara

Created

2018-10-23T18:34:24Z

Updated

2018-10-24T09:05:36Z

#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