• Lenguaje

    C

  • Descripción

    Hallar el cociente de dos números.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    float a, b, cociente;
    printf ("Ingresa el valor de a: ");
    scanf ("%f", &a);
    (void) getchar ();
    printf ("Ingresa el valor de b: ");
    scanf ("%f", &b);
    (void) getchar ();
    if(b!=0)
        cociente=a/b;
    else
    {
        cociente=0;
        printf ("Intederminaci\242n\n");
    }
    printf ("Valor de cociente: %g\n", cociente);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}