Новый Текстовый Документ

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include <iostream>

using namespace std;

void table(int i, int k)


{
cout<<k<<": ";
for(int j=1; j<=10; j++)
cout<<j*k<<" ";

int main()
{
int k=1;
for(int i=1; i<=9; i++, cout<<endl)
if(k<=9)
table(i,k++);
return 0;
}

You might also like