- Форум
- По малко от всичко
- Кофата
- Помощ с готвене
Махни я тая джава!
#include <iostream>
#include <ctime>
#include <cstdlib>
using namespace std;
class Spaghetti {
int Zarko;
public:
void set_values (int);
int pi4 () {return (Zarko);}
};
void Spaghetti::set_values (int Input) {
Zarko=Input;
}
int main()
{
srand(time(NULL));
Spaghetti ForZarko;
ForZarko.set_values(rand()%100+1);
cout<<"Zarko e pi4: "<<ForZarko.pi4()<<"%! \n";
return 0;
}
Don't hate the hacker,
hate the code!