Quick actions

cmd+k|ctrl+k

Navigation

Languages

4lab.Задание№117

Snippet info

Language

Cpp

Visibility

public

Author

romanov

Created

2018-11-05T13:56:29Z

Updated

2018-11-05T13:56:29Z

#include <iomanip>
#include <iostream>
using namespace std;
 
int main()
{
    int i, j;
    for(i = 1; i < 10; i++)
    for(j = 1; j < 10; j++)
        cout<<i<<"*"<<j<<" = "
            <<dec<<(i*j)
            <<" ("
            <<hex<<i*j
            <<") "<<endl;
            return 0;
            system("pause");
}
INFO