Z wykorzystaniem funkcji napisz program w C++ wyświetlajacy tabliczkę mnożenie liczb całkowitych w zakresie od 1 do dowolnej liczby mnijeszej od 10
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include<iostream>
using namespace std;
void show(){
cout << "0 1 2 3 4 5 6 7 8" << endl << endl;;
for(int a = 1; a < 9; a++){
cout << a << " ";
for(int b = 1; b < 9; b++){
int x = a*b;
if(x > 9){
cout << x << " ";
continue;
}
cout << x << " ";
}
cout << endl;
}
}
int main(){
show();
}