Sir i am still getting the error

#include
#include
using namespace std;
int main()
{
int no,i=1,n=3;
int largest=INT_MIN;

while(i<=3)
{
	cin>>no;
	if(largest<no)
	{
		largest=no;
		
	}
	i++;
	

}

cout<<"The largest number "<<largest;
}

hi @gamingzone123a_2a8bc985f4c429d5
"The largest number "
this line is not expected in the output. simply print the largest number.

Corrected code–>

#include<iostream>
#include<climits>
using namespace std;
int main()
{
	int no,i=1,n=3;
	int largest=INT_MIN;
	
	while(i<=3){
		cin>>no;
		if(largest<no){
			largest=no;
		}
		i++;
	}
  cout<<largest;
}

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.