• Lenguaje

    PSeInt (Pseudocódigo)

  • Descripción

    Obtener el seno de un ángulo, la cual está dada por la función:
    Sen x = (x - x³/3! + x⁵5/5! - x⁷/7! + ...)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Proceso SerieParaObtenerSeno
    sen_x <- 0;
    Escribir Sin Saltar "Ingresa el valor de x:";
    Leer x;
    Escribir Sin Saltar "Ingresa el valor de n:";
    Leer n;
    Para i<-1 Hasta n Con Paso 1 Hacer
        Escribir "PROCESO ", i;
        Si i = 1 Entonces
            exponente <- 1;
            factorial <- x;
            termino <- x;
        SiNo
            exponente <- exponente+2;
            factorial <- factorial*x*x;
            termino <- (x)^(exponente)/factorial;
        FinSi
        Si i MOD 2 = 0 Entonces
            sen_x <- sen_x-termino;
        SiNo
            sen_x <- sen_x+termino;
        FinSi
        Escribir "Valor de exponente: ", exponente;
        Escribir "Valor de factorial: ", factorial;
        Escribir "Valor de termino: ", termino;
        Escribir "";
    FinPara
    Escribir "Valor de sen x: ", sen_x;
FinProceso