Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
¿Ayuda con un programa en turbo c?
necesito un programa que haga una suma resta multiplicacion,, PERO USANDO FUNCIONES ej void suma (intnum1.num2,)
1 Answer
- 1 decade agoFavorite Answer
hace tiempo que no uso lenguaje c ,asi que si la sintaxis no es del todo correcta , creo que podras
corregirla
main()
{int num1,num2,opcion;
char continuar;
do
{ printf("que operacion desea hacer 1=suma, 2=resta 3=multiplicacion");
scanf("%d",&opcion);
printf("ingrese numero 1: ");
scanf("%d",&num1);
printf("ingrese numero 2: ");
scanf("%d",&num2);
if(opcion==1)
{
sumar(int num1,int num2);
}
if(opcion==2)
{
restar(int num1,int num2);
}
if(opcion==3)
{
multiplicar(int num1, int num2);
}
printf("desea continuar?");
scanf("%s",&continuar);
}while(continuar=='s')
}
void int sumar(int num1,int num2)
{int res;
res=num1+num2;
return res;
}
void int restar(int num1,int num2)
{int res;
res=num1-num2;
return res;
}
void int multiplicar(int num1,int num2)
{int res;
res=num1*num2;
return res;
}
Bueno creo que seria algo asi ,pero si ai algun error puede que me aya confundido con java es que es el que ocupo ahora
espero te sirva