You are on page 1of 1

Programa que imprime multiplos del 6

#include <iostream>

#include <conio.h>

using namespace std;

int main(){

int j,m;

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

m=j*6;

cout<<m<<endl;

You might also like