home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource5 / 357_01 / cstar1.exe / FIF.TST < prev    next >
Encoding:
Text File  |  1991-11-15  |  122 b   |  10 lines

  1. main() 
  2. {
  3.     int a, b;
  4.  
  5.     if (a < b) a = b;
  6.     else    if (a == b) a = b + 1;
  7.         else    if (a == 5) a = 6;
  8.             else a = 3;
  9. }
  10.