Advertisement
Guest User

Untitled

a guest
Nov 11th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. #include <iostream>
  2. #include <math.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include <string>
  6. #include <time.h>
  7. #include <windows.h>
  8. #include <conio.h>
  9.  
  10. using namespace std;
  11.  
  12. class Kalkulator //prosty
  13. {
  14. private:
  15.     float x,y;
  16.     int wybor;
  17.     float wynik;
  18. public:
  19.     void kMenu();
  20.     void kWyciagnij();
  21.     void kOblicz();
  22.     void kPokazWynik();
  23.  
  24.     Kalkulator(float,float,int,float);
  25.     ~Kalkulator();
  26. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement