Advertisement
Lauda

Untitled

Oct 23rd, 2012
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 4.40 KB | None | 0 0
  1. #ifndef GEOMETRIJA_HPP_INCLUDED
  2. #define GEOMETRIJA_HPP_INCLUDED
  3.  
  4. #include <cmath>
  5. using namespace std;
  6.  
  7. class Pravougaonik {
  8. private:
  9.         double a,b;
  10.  
  11. public:
  12.     Pravougaonik() {
  13.         a = 1;
  14.         b = 1;
  15.     }
  16.  
  17.     void setA(double aa) {
  18.         a = abs(aa);
  19.     }
  20.  
  21.     void setB(double bb) {
  22.         b = abs(bb);
  23.     }
  24.  
  25.     double getA() {
  26.         return a;
  27.     }
  28.  
  29.     double getB() {
  30.         return b;
  31.     }
  32.  
  33.     double getPovrsina() const {
  34.         return a * b;
  35.     }
  36.  
  37.     double getObim() const {
  38.         return ((2*a) + (2*b));
  39.     }
  40.  
  41.     double getDijagonala() const {
  42.         return sqrt(pow(a,2) + pow(b,2));
  43.     }
  44.  
  45. };
  46.  
  47. class Kvadrat {
  48. private:
  49.     double a;
  50.  
  51. public:
  52.     Kvadrat() {
  53.         a = 1;
  54.     }
  55.     void setA(double aa) {
  56.         a = abs(aa);
  57.     }
  58.  
  59.     double getA() {
  60.         return a;
  61.     }
  62.  
  63.     double getPovrsina() const {
  64.         return pow(a,2);
  65.     }
  66.  
  67.     double getObim() const {
  68.         return 4 * a;
  69.     }
  70.  
  71.     double getDijagonala() const {
  72.         return a * sqrt(2);
  73.     }
  74.  
  75. };
  76.  
  77. class Trougao {
  78. private:
  79.         double a,b,c;
  80.  
  81. public:
  82.     Trougao() {
  83.         a = 1;
  84.         b = 1;
  85.         c = 1;
  86.     }
  87.  
  88.     int checkABC(double aa, double bb, double cc) {
  89.         if (aa == 0 || bb == 0 || cc == 0)
  90.             return -1; // Ne moze biti nula...
  91.  
  92.         else if (aa == bb && bb == cc)
  93.             return 1; // Jednakostranican trougao!
  94.  
  95.         else if (aa == bb || aa == cc || bb == cc)
  96.             return 2; // Jednakokraki trougao!
  97.  
  98.         else if (pow(aa,2) + pow(bb,2) == pow(cc,2))
  99.             return 3; // Pravougli trougao!
  100.  
  101.         else return 4; // Raznostranicni ?
  102.     }
  103.  
  104.  
  105.     void setA(double aa) {
  106.         a = abs(aa);
  107.     }
  108.  
  109.     void setB(double bb) {
  110.         b = abs(bb);
  111.     }
  112.  
  113.     void setC(double cc) {
  114.         c = abs(cc);
  115.     }
  116.  
  117.     double getA() {
  118.         return a;
  119.     }
  120.  
  121.     double getB() {
  122.         return b;
  123.     }
  124.  
  125.     double getC() {
  126.         return c;
  127.     }
  128.  
  129.     double getPovrsina() const {
  130.         double s = (a+b+c)/2.f;
  131.  
  132.         return sqrt(s*(s-a)*(s-b)*(s-c));
  133.     }
  134.  
  135.     double getObim() const {
  136.         return a+b+c;
  137.     }
  138.  
  139. };
  140.  
  141.  
  142. #endif // GEOMETRIJA_HPP_INCLUDED
  143.  
  144.  
  145. // GLAVNI PROGRAM
  146. #include "geometrija.hpp"
  147. #include <iostream>
  148. #include <cstdlib>
  149.  
  150. using namespace std;
  151.  
  152. int main()
  153. {
  154.   Pravougaonik p;
  155.   Kvadrat k;
  156.   Trougao t;
  157.  
  158.   double a = 0,b = 0,c = 0;
  159.  
  160. do {
  161.   cout << "Unesite stranicu a: " << endl;
  162.   cin >> a;
  163.   cout << "Unesite stranicu b: " << endl;
  164.   cin >> b;
  165.   cout << "Unesite stranicu c: " << endl;
  166.   cin >> c;
  167. }
  168. while ((a == 0) || (b == 0) || (c == 0));
  169.  
  170. system("cls");
  171.  
  172.   p.setA(a);
  173.   p.setB(b);
  174.  
  175.   k.setA(a);
  176.  
  177.   t.setA(a);
  178.   t.setB(b);
  179.   t.setC(c);
  180.  
  181.     cout << "-----------PRAVOUGAONIK-----------" << endl;
  182.     cout << "Duzina stranice a: " << p.getA() << ", duzina stranice b: " << p.getB() << endl;
  183.     cout << "Povrsina pravougaonika: " << p.getPovrsina() << endl;
  184.     cout << "Obim pravougaonika: " << p.getObim() << endl;
  185.     cout << "---------------------------------------------" << endl;
  186.     cout << endl;
  187.     cout << "-----------KVADRAT-----------" << endl;
  188.     cout << "Duzina stranice a: " << k.getA() << endl;
  189.     cout << "Povrsina kvadrata: " << k.getPovrsina() << endl;
  190.     cout << "Obim kvadrata: " << k.getObim() << endl;
  191.     cout << "Dijagonala kvadrata: " << k.getDijagonala() << endl;
  192.     cout << "---------------------------------------------" << endl;
  193.     cout << endl;
  194.     cout << "-----------TROUGAO-----------" << endl;
  195.     cout << "Duzina stranice a: " << t.getA() << ", duzina stranice b: " << t.getB() << ", duzina stranice c: " << t.getC() << endl;
  196.     cout << "Povrsina trougla: " << t.getPovrsina() << endl;
  197.     cout << "Obim trouga: " << t.getObim() << endl;
  198.     cout << "Vrsta trouga: ";
  199.     switch (t.checkABC(a,b,c)) {
  200.         case -1:
  201.             cout << "GRESKA! Nepoznat trougao, pogresan unos!" << endl;
  202.         break;
  203.  
  204.         case 1:
  205.             cout << "Jednakostranican trougao!" << endl;
  206.         break;
  207.  
  208.         case 2:
  209.             cout << "Jednakokraki trougao!" << endl;
  210.         break;
  211.  
  212.         case 3:
  213.             cout << "Pravougli trougao!" << endl;
  214.         break;
  215.  
  216.         default:
  217.             cout << "Raznostranican trougao!" << endl;
  218.         break;
  219.     }
  220.     cout << "---------------------------------------------" << endl;
  221.  
  222.     return 0;
  223. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement