fork(1) download
#include <iostream>
using namespace std;

class wyswietlanie_liczb
{
public:
    class procent_wygranej
    {
        int zmienna_typu_int;
    public:
        int operator()(int a, int b) { return a*b; }
    };
};

int main()
  {
   wyswietlanie_liczb::procent_wygranej pw;
   cout<<pw(2,3)<<endl;
   return 0;
  }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
6