Total members 11892 |It is currently Sun Sep 08, 2024 5:56 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





Comparison Pitfall using C++
cpp code
#include <iostream>

using namespace std;

int main()
{
int a,b,c;

// Read and test three values.
cin >> a >> b >> c;

// Run some BOGUS tests.
cout << a << " < " << b << " < " << c << ": ";
if(a < b < c) cout << "Yes.";
else cout << "No.";
cout << endl;

cout << a << " == " << b << " == " << c << ": " << endl;
if(a == b == c) cout << "Yes.";
else cout << "No.";
cout << endl;

cout << a << " > " << b << " > " << c << ": " << endl;
if(a > b > c) cout << "Yes.";
else cout << "No.";
cout << endl;
}




_________________
Please recommend my post if you found it helpful


Author:
Beginner
User avatar Posts: 95
Have thanks: 2 time
Post new topic Reply to topic  [ 1 post ] 

  Related Posts  to : Comparison Pitfall
 Arithmetic data comparison in C#     -  
 Comparison Operators in java     -  
 Free Quality Comparison Guide to VoIP     -  
 Arithmetic data comparison and decompression java code     -  



Topic Tags

C++ Basics






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com