May 2021 1 154 Report
¿Como agregar libreria <iostream> dev c++ 5.5.3?

Tengo un error en mi codigo en "No such or file directory"

#include<iostream>

#include<stdio.h>

#include<conio.h>

using namespace std;

int main()

{

int a, b, c;

cout <<"Ingrese el Primer numero: ";

cin >> a;

cout<<"Ingrese el Segundo Numero: ";

cin >> b;

cout <<"Ingrese el Tercer numero: ";

cin >> c;

if(a > b && a > c) {

cout<<"El numero de la serie"<<a<<"es el mayor"<<endl;

}

if(b > a && b > c) {

cout<<"El numero de la serie"<<b<<"es el mayor"<<endl;

}

if(c > a && c > b) {

cout<<"El numero de la serie"<<c<<"es el mayor"<<endl;

}

getch();

return(0);

}


Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments




Helpful Social

Copyright © 2024 Q2A.MX - All rights reserved.