• Lenguaje

    C

  • Descripción

    Resuelva la siguiente ecuación: Y = 6x + 7

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    float x, y;
    printf ("Ingresa el valor de x: ");
    scanf ("%f", &x);
    (void) getchar ();
    y=6.0*x+7;
    printf ("Valor de y: %g\n", y);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}