#include <stdio.h> #include <stdlib.h> using namespace std;int main(){ int suma=0, i; for (i=1;i<=100;i++) suma+=i; printf("%d",suma); getchar(); getchar(); return 0; }
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
#include <stdio.h>
#include <stdlib.h>
using namespace std;
int main(){
int suma=0, i;
for (i=1;i<=100;i++)
suma+=i;
printf("%d",suma);
getchar();
getchar();
return 0;
}