Advertisement
Guest User

Untitled

a guest
Nov 11th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 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 rKwadratowe
  13. {
  14. private:
  15.     float a,b,c;
  16.     float delta;
  17.     float wynik;
  18.     float wynik2;
  19. public:
  20.     void rkPodajLiczby();
  21.     void rkOblicz();
  22.     void rkWyswietl();
  23.  
  24.     rKwadratowe(float,float,float,float,float,float);
  25.     ~rKwadratowe();
  26. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement