Programa Que Imprime Multiplos Del 6 #Include #Include

You might also like

Download as pdf or txt
Download as pdf or txt
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