Printer Friendly
Dictionary, Encyclopedia and Thesaurus - The Free Dictionary
3,588,008,503 visitors served.
forum Join the Word of the Day Mailing List For webmasters
?
Dictionary/
thesaurus
Medical
dictionary
Legal
dictionary
Financial
dictionary
Acronyms
 
Idioms
Encyclopedia
Wikipedia
encyclopedia
?

if-then-else

   Also found in: Wikipedia 0.01 sec.
if-then-else
A high-level programming language statement that compares two or more sets of data and tests the results. If the results are true, the THEN instructions are taken; if not, the ELSE instructions are taken. The following is a BASIC example:
   10  if answer = "y"  then print "Yes"
   20  else print "No"


In many languages, THEN is implied. All statements between IF and ELSE are carried out if the condition is true. All statements between ELSE and the end of the statement are carried out if not true. The following dBASE and C/C++ examples produce the same results as above:
      dBASE                    C/C++

   if answer = "y"        if (answer =='y')
       ? "Yes"              {
     else                   printf ("Yes\n");
       ? "No"             else
   endif                    printf ("No\n");
                            }


How to thank TFD for its existence? Tell a friend about us, add a link to this page, add the site to iGoogle, or visit webmaster's page for free fun content.
?Page tools
Printer friendly
Cite / link
Feedback
Mentioned in?   Encyclopedia browser?   Full browser?
No references found
 
 
 
Encyclopedia
?

Terms of Use | Privacy policy | Feedback | Copyright © 2012 Farlex, Inc.
Disclaimer
All content on this website, including dictionary, thesaurus, literature, geography, and other reference data is for informational purposes only. This information should not be considered complete, up to date, and is not intended to be used in place of a visit, consultation, or advice of a legal, medical, or any other professional.