You are on page 1of 1

Programa que imprime multiplos de 5 al 50

#include <iostream>

#include <conio.h>

using namespace std;

int main(){

int j,m;

for(j=1;j<=10;j++){

m=j*5;

cout<<m<<endl;

You might also like