Quick actions

cmd+k|ctrl+k

Navigation

Languages

5lab(8)

Snippet info

Language

Cpp

Visibility

public

Author

bikhnevichk

Created

2018-11-12T21:37:17Z

Updated

2018-11-12T21:37:17Z

#include <iostream>

using namespace std;

int main() {
    int a = 12345679;
    int x = 9,s;
     for(int i =0;i < 9;i++){
         s = a*x;
         cout << a << "*" << x << "=" << s<< endl;
         x += 9;
         
     }
    return 0;
}
INFO