#include <stdio.h>
//#include <stdlib.h>
int cociente (int n,int m);
void main(void)
{
int n,m;
do{
printf("Dame dos numeros:");
scanf("%d %d",&n,&m);
}
while((n<=0)||(m<=0))
{
printf("El cociente es %d\n",cociente(n,m));
}
}
//FUNCION
int cociente (int n,int m)
{
int c,Mayor,menor,acu;
if(n<m)
{
Mayor=m;
menor=n;
}
else
{
Mayor=n;
menor=m;
}
acu=menor;
c=0;
while(acu<=Mayor)
{
acu+=menor;
c++;
}
return (c);
}
ME MARCA ERRORES
EN LA LINEA 7 Y 16
GRACIAS