-
Notifications
You must be signed in to change notification settings - Fork 0
/
P18 VER.1 SEPTIMO ALGORITMO NUM 1-100.cpp
35 lines (35 loc) · 1.25 KB
/
P18 VER.1 SEPTIMO ALGORITMO NUM 1-100.cpp
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
30
31
32
33
34
35
//Boyzo Ramirez Carlos Alberto. 1155 F. De Comp. I.E.E. F.E.S. Aragón 01:01 a.m. 06/11/2019
#include <stdio.h>
#include <cstdlib>
#include <iostream>
#include <conio.h>
/*Programa No 7 version 1 de los algoritmos
Programa que muestra el uso de la estructura for*/
using namespace std;
int main(void)
{
int indice,sumatoria=0;
system("cls");
printf("\n\n\t\tPrograma No 7 version 1 de los algoritmos");
printf("\n\n\t\tPrograma que muestra el uso de la estructura for\n\n\t\t");
/*
LA SIGUIENTE LINEA ORIGINALMENTE CARECE DEL ARGUMENTO "\t" y el texto se genera pegado a la ventana
PODRIA SER A PROPOSITO O SER UN ERROR LO DEJO A CONSIDERACION
(ORIGINALMENTE ES: printf("\n\nPrograma que calcula e imprime la sumatoria de los numeros del 1 hasta el 100");)
*/
printf("\n\n\tPrograma que calcula e imprime la sumatoria de los numeros del 1 hasta el 100");
printf("\n\n\t\t");
system("PAUSE");system("cls");
printf("\n\n\t\tSUMATORIA DE NUMEROS DEL 1 HASTA EL 100\n\n\t\t");
for (indice=1;indice<=100;indice++)
{
system("cls");
sumatoria++;
printf("\n\t\t Sumatoria= %d ",sumatoria);
getche();
}
printf("\n\n\t\tLa suma total del 1 al 100 es : %d ",sumatoria);
printf ("\n\n\t\t ");
system("PAUSE");
return sumatoria;
}