Category:Comparison Operations: Difference between revisions

From BR Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 2: Line 2:


{|
{|
|-valign="top"
|-valign="top"|width="20%"|'''Operator'''|| '''Meaning'''
|width="20%"|'''Operator'''|| '''Meaning'''
|-valign="top"|width="20%"|'''='''||equal, like the '''==''' operator below
|-valign="top"
|-valign="top"|width="20%"|'''=='''||equal
|width="20%"|'''='''||equal, like the '''==''' operator below
|-valign="top"|width="20%"|'''<>'''||not equal
|-valign="top"
|-valign="top"|width="20%"|'''<'''||less than
|width="20%"|'''=='''||equal
|-valign="top"|width="20%"|'''<='''||less than or equal to
|-valign="top"
|-valign="top"|width="20%"|'''>'''||more than
|width="20%"|'''<>'''||not equal
|-valign="top"|width="20%"|'''>='''||more than or equal to
|-valign="top"
|width="20%"|'''<'''||less than
|-valign="top"
|width="20%"|'''<='''||less than or equal to
|-valign="top"
|width="20%"|'''>'''||more than
|-valign="top"
|width="20%"|'''>='''||more than or equal to
|}
|}


Line 35: Line 27:
  00120 if number1 >= number2 then print "number1 is more than or equal to number2"
  00120 if number1 >= number2 then print "number1 is more than or equal to number2"


To illustrate the difference between == and =, look at the following program.  You will see the values passed to the function from (A==B) and (A=B) are 0 and 7.  (A==B) is a *comparison* and will return 1 or 0 for True or False, while (A=B) is a *assignment* and assigns A the value of B.
 
A=5
B=7
fn_test(A,B,(A==B))
fn_test(A,B,(A=B))
en
def fn_test(a,b,c)
  pr 'a=';a;'b=';b;'c=';c
fn
a= 5 b= 7 c= 0
a= 7 b= 7 c= 7


<noinclude>
<noinclude>
[[Category:Operations]]
[[Category:Operations]]
</noinclude>
</noinclude>

Revision as of 17:24, 11 April 2018

Below is the list of comparison operators:

Consider the following example of how comparison operations may be used in a program:

00010 ! prompt user and read first number
00020 print "Enter first integer: "
00030 input number1
00040 ! prompt user and read second number
00050 print "Enter second integer: "
00060 input number2
00070 if number1 == number2 then print "number1 is equal to number2"
00080 if number1 <> number2 then print "number1 is not equal to number2"
00090 if number1 <  number2 then print "number1 is less than number2"
00100 if number1 >  number2 then print "number1 is more than number2"
00110 if number1 <= number2 then print "number1 is less than or equal to number2"
00120 if number1 >= number2 then print "number1 is more than or equal to number2"

To illustrate the difference between == and =, look at the following program. You will see the values passed to the function from (A==B) and (A=B) are 0 and 7. (A==B) is a *comparison* and will return 1 or 0 for True or False, while (A=B) is a *assignment* and assigns A the value of B.

A=5
B=7
fn_test(A,B,(A==B))
fn_test(A,B,(A=B))
en
def fn_test(a,b,c)
  pr 'a=';a;'b=';b;'c=';c
fn

a= 5 b= 7 c= 0
a= 7 b= 7 c= 7

This category currently contains no pages or media.