martes, 5 de noviembre de 2019

Programa nuevo 6

#include <iostream>
#include <stdio.h>
#include <stdlib.h>
using namespace std;
int j;
int main()
{
    cout << "Multiplos de 5" << endl;
    j=105;
    do
    {
       j=j-5;
       cout<<j<<endl;
    }
    while (j>5);
    system("PAUSE");
    return 0;
}

No hay comentarios.:

Publicar un comentario