Difference between revisions of "CPP/Enum"

From ProgrammingExamples
< CPP
Jump to: navigation, search
(Created page with '==Enum.cpp== <source lang="cpp"> #include <iostream> enum PointType { GOOD, BAD, UNINFORMATIVE }; int main(int argc, char *argv[]) { PointType A = GOOD; if(A == GOOD) …')
 
m (Enum.cpp)
Line 4: Line 4:
  
 
enum PointType { GOOD, BAD, UNINFORMATIVE };
 
enum PointType { GOOD, BAD, UNINFORMATIVE };
 +
/*
 +
* Other Ways:
 +
* enum PointType { GOOD = 3, BAD = 6, UNINFORMATIVE = 9};
 +
* enum PointType { GOOD = 2, BAD, UNINFORMATIVE }; GOOD =2,BAD =3,so on...
 +
*/
 
 
 
int main(int argc, char *argv[])
 
int main(int argc, char *argv[])

Revision as of 10:00, 23 June 2010

Enum.cpp

#include <iostream>
 
enum PointType { GOOD, BAD, UNINFORMATIVE };
/*
 * Other Ways:
 * enum PointType { GOOD = 3, BAD = 6, UNINFORMATIVE = 9};
 * enum PointType { GOOD = 2, BAD, UNINFORMATIVE }; GOOD =2,BAD =3,so on...
 */
 
int main(int argc, char *argv[])
{
  PointType A = GOOD;
 
  if(A == GOOD)
  {
    std::cout << "good" << std::endl;
  }
  else
  {
    std::cout << "not good" << std::endl;
  }
 
  if(A == BAD)
  {
    std::cout << "not working" << std::endl;
  }
  else
  {
    std::cout << "working" << std::endl;
  }
 
  return 0;
}