Páginas

EVAP4

caso 1
#include<iostream>
using namespace std;
int main()
{
    // DECLARACION
    int  i, n, suma;
     cout<<endl;
    cout <<"CALCULO DE LOS MULTIPLOS DE TRES";   
   cout<<endl;
    cout <<"INGRESE EL NUMERO TERMINOS A SUMAR";   
cin >>n;
cout<<endl;
   //Proceso repetitivo
   //inicializar acumuladores
        suma=0;
        i = 1;
    do
    {
        suma = suma + (3*i);
        i= i + 1;
    }
    while (i<=n);
     //Resultado
       cout <<"LA SUMA DE LOS MULTIPLOS DE TRES ES:"<< suma;
      cout<<endl;
        system("pause");
        return 0;

        }

caso 2

#include<iostream>
using namespace std;
int main()
{
   cout<<"LA SUMA DE LOS CUADRADOS DE LOS NUMEROS\n\n";
   int N;
   int R;
   do
   {
    cout<<"INGRESE LA CANTIDAD DE NUMEROS:";
    cin>>N;
    cout<<endl;
   }
   while(N<0);
   R=N*(N+1)*(2*N+1)/6;
   cout<<"LA SUMA DE LOS CUADRADOS DE LOS NUMEROS ES:"<<R;
   cout<<endl;
cout<<endl;
        system("pause");
        return 0;
        }

caso 3

#include<iostream>
using namespace std;
int main()
{
    {
       cout<<"*********FACTORIAL DE UN NUMERO*********\n\n";
       int N,i;
       int f=1;
       do
       {
        cout<<"INGRESE UN NUMERO:";cin>>N;cout<<endl;
       }
       while(N<=0);
       for(i=1;i<=N;i++)
       f=f*i;
       cout<<"EL FACTORIAL DEL NUMERO ES:"<<f;cout<<endl;
        }
        system("pause");
        return 0;
        }

caso 4

#include<iostream>
using namespace std;
int main()
{
    {
       cout<<"*********NUMERO MAYOR A 30*********\n\n";
       int num;
       cout<<"INGRESE UN NUMERO MAYOR A 30\n\n";cin>>num;cout<<endl;
       if(num<=30)
       {
        do
        {
         cout<<"INGRESE UN NUMERO MAYOR A 30\n\n";cin>>num;cout<<endl;
        }
        while(num<=30);
       }
       cout<<"EL NUMERO FUE: "<<num;cout<<endl;

                       }
        system("pause");
        return 0;
        }





No hay comentarios:

Publicar un comentario