c 2b 2b expected a 27 29 27

Solutions on MaxInterview for c 2b 2b expected a 27 29 27 by the best coders in the world

showing results for - "c 2b 2b expected a 27 29 27"
Bruno
06 Jun 2019
1  #include <iostream>
2#include <cstdlib>               
3#include <math.h> 
4
5using namespace std;
6
7#define vesszo ","
8#define szokoz " "
9
10int 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
29}
similar questions
queries leading to this page
c 2b 2b expected a 27 29 27