Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <iostream>
- using namespace std;
- int n1, n2, n3;
- float f1, f2;
- bool b1, b2;
- char* c1;
- char* c2;
- int main()
- {
- c1 = "Lol al fin";
- c2 = "seriously ve a dormir cowboy";
- n1=3;
- n2=19;
- f1=9.81;
- f2=3.14;
- b1 =(n1 + f1+ f2 > n2 && n1 + f1+ f2 < n2);
- if(b1 == 0)
- {
- cout << c1 << "\n \n" << endl;
- }
- else
- {
- cout << c2 << "\n \n" << endl;
- }
- cin.get();
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment