Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <vector>
- #include "Dado.h"
- using namespace std;
- class Dado2 {
- public:
- Dado2() { num_facce = 6;}
- Dado2(int _num_facce)
- {
- if (_num_facce>0) { num_facce = _num_facce;}
- }
- private:
- int num_facce = 0;
- int valore = 0;
- };
- int main()
- {
- // Test test1 = Test();
- //
- Dado2 d = Dado2();
- //
- // cout << d.getNumFacce() << endl;
- //
- //
- Dado2 d2 = Dado2(20);
- // //cout << d.get_valore() << endl;
- //
- // for (int i=0; i<10; i++)
- // cout << d.lancio() << endl;
- // Dado tanti_dadi[20];
- // for (int i=0; i<20; i++)
- // {
- // tanti_dadi[i] = Dado(12);
- // cout << tanti_dadi[i].lancio() << endl;
- // }
- return 0;
- // Dado d1 = Dado(); //creo dado a 6 facce
- // cout << d1.lancio() << endl;
- //
- //
- // cout << d1.get_valore() << endl;
- //
- // Dado d2(6);
- // cout << d2.lancio() << endl;
- // cout << d2.get_valore() << endl;
- //
- // Dado d3(20);
- // cout << d3.lancio() << endl;
- // cout << d3.get_valore() << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement