lunes, 30 de septiembre de 2019

Programa 3 modificado

#include <iostream>
#include<stdio.h>

using namespace std;
int h;
void captura();
void impresion();
int main()
{
    cout<<"Multiplo de 3"<<endl;
   for(h=3;h<=66;h=h+3)
   {
      cout<<h<<endl;
   }

    return 0;
}
void multiplos()
{
    cout << "FUNCION MULTIPLOS" << endl;
    for(h=3;h<=66;h=h+3)
    {
        cout <<h<<endl;
    }
}

No hay comentarios.:

Publicar un comentario