-
Lenguaje
C
-
Descripción
Calcule la potencia n del número 2, donde n es número entero positivo.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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)
{
int i, n;
float potencia;
potencia = 0;
printf ("Ingresa el valor de n: ");
scanf ("%d", &n);
(void) getchar ();
for (i=1; i<=n; i++)
{
printf ("PROCESO %d\n", i);
if(i==1)
potencia=2;
else
potencia=potencia*2;
putchar ('\n');
}
printf ("Valor de potencia: %f\n", potencia);
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
int i, n;
float potencia;
potencia = 0;
printf ("Ingresa el valor de n: ");
scanf ("%d", &n);
(void) getchar ();
for (i=1; i<=n; i++)
{
printf ("PROCESO %d\n", i);
if(i==1)
potencia=2;
else
potencia=potencia*2;
putchar ('\n');
}
printf ("Valor de potencia: %f\n", potencia);
system ("pause");
return EXIT_SUCCESS;
}