• Lenguaje

    C

  • Descripción

    Calcular la función f(x)=3x+4 sabiendo que X es es un valor ingresado por el usuario.

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=3.0*x+4.0;
    printf ("Valor de y: %g\n", y);
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}