#include <iostream>
using namespace std;
int main()
{
int bcs,cs;
for (bcs = 1; bcs<=9; bcs++)
{
for (cs = 1; cs<=bcs; cs++)
{
cout<<bcs<<'*'<<cs<<'='<<bcs*cs<<' ';
}
cout<<endl;
}
system("pause");
return 0;
}
#include <iostream>
using namespace std;
int main()
{
int bcs,cs;
for (bcs = 1; bcs<=9; bcs++)
{
for (cs = 1; cs<=bcs; cs++)
{
cout<<bcs<<'*'<<cs<<'='<<bcs*cs<<' ';
}
cout<<endl;
}
system("pause");
return 0;
}