fork(3) download
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <math.h>
  4.  
  5. using namespace std;
  6.  
  7. #define vesszo ","
  8. #define szokoz " "
  9.  
  10. int main()
  11. {
  12. system("cls");
  13. double a, b, c;
  14.  
  15. cout << "1.oldal: ";
  16. cin >> a;
  17. cout << "2.oldal: ";
  18. cin >> b;
  19. cout << "3.oldal: ";
  20. cin >> c;
  21.  
  22. cout << "A haromszog oldalai: " << a << vesszo << szokoz << b << vesszo << szokoz << c << "\n";
  23.  
  24.  
  25. bool szekhet = false;
  26.  
  27. if ((a + b > c) and(a + c > b) and(b + c > a));
  28. }
Success #stdin #stdout #stderr 0s 3276KB
stdin
3 4 5
stdout
1.oldal: 2.oldal: 3.oldal: A haromszog oldalai: 3, 4, 5
stderr
sh: 1: cls: not found