Hola a todos, soy nuevo en esto el caso es que quiero hacer que este programa vuelva al principio o se repita y no me aclaro el codigo es:
#include <conio.h>
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cout<<"type first number"<<endl;
cin>>a;
cout<<"type first number"<<endl;
cin>>b;
cout<<"type first number"<<endl;
cin>>c;
if ((a>=b) && (a>=c) )
{
cout<<"the biggest is: "<<a;
}
if ((b>=a) && (b>=c) )
{
cout<<"the biggest is: "<<b;
}
if ((c>=b) && (c>=a) )
{
cout<<"the biggest is: "<<c;
}
getch();
return 0;
}
Y el caso es que he probado con do y while pero no me aclaro chicos, gracias por vuestra atencion,.
#include <conio.h>
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cout<<"type first number"<<endl;
cin>>a;
cout<<"type first number"<<endl;
cin>>b;
cout<<"type first number"<<endl;
cin>>c;
if ((a>=b) && (a>=c) )
{
cout<<"the biggest is: "<<a;
}
if ((b>=a) && (b>=c) )
{
cout<<"the biggest is: "<<b;
}
if ((c>=b) && (c>=a) )
{
cout<<"the biggest is: "<<c;
}
getch();
return 0;
}
Y el caso es que he probado con do y while pero no me aclaro chicos, gracias por vuestra atencion,.