miércoles, 11 de septiembre de 2019

Programa 3 con Funcion

#include <iostream>
using namespace std;
void imprime();
float h;
int main()
{
    imprime();
    return 0;
}
void imprime()
{
 cout<<"    *Serie del 3 al 66*\n"<<endl;
 for (h=3; h<=66; h=h+3)
       cout<<" "<<h<<endl;
   }


No hay comentarios:

Publicar un comentario

Cadenas

#include <iostream> #include <stdio.h> #include <string.h> using namespace std; char nombre[50],paterno[50],materno[20...