How to resolve the algorithm Integer comparison step by step in the ColdFusion programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Integer comparison step by step in the ColdFusion programming language

Table of Contents

Problem Statement

Get two integers from the user. Then,   display a message if the first integer is: the second integer.

Test the condition   for each case separately,   so that   all three comparison operators are used   in the code.

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Integer comparison step by step in the ColdFusion programming language

Source code in the coldfusion programming language


    
    
    
    
	    
    
    
	    
    
    
	    
    
    
	    
    
    
	    
    
    
	    
    
    




	function CompareInteger( Integer1, Integer2 ) {
		VARIABLES.Result = "";
		if ( ARGUMENTS.Integer1 LT ARGUMENTS.Integer2 ) {
			VARIABLES.Result = VARIABLES.Result & "(" & ARGUMENTS.Integer1 & " is less than " & ARGUMENTS.Integer2 & ")";
		}
		if ( ARGUMENTS.Integer1 LTE ARGUMENTS.Integer2 ) {
			VARIABLES.Result = VARIABLES.Result & "(" & ARGUMENTS.Integer1 & " is less than or equal to " & ARGUMENTS.Integer2 & ")";
		}
		if ( ARGUMENTS.Integer1 GT ARGUMENTS.Integer2 ) {
			VARIABLES.Result = VARIABLES.Result & "(" & ARGUMENTS.Integer1 & " is greater than " & ARGUMENTS.Integer2 & ")";
		}
		if ( ARGUMENTS.Integer1 GTE ARGUMENTS.Integer2 ) {
			VARIABLES.Result = VARIABLES.Result & "(" & ARGUMENTS.Integer1 & " is greater than or equal to " & ARGUMENTS.Integer2 & ")";
		}
		if ( ARGUMENTS.Integer1 EQ ARGUMENTS.Integer2 ) {
			VARIABLES.Result = VARIABLES.Result & "(" & ARGUMENTS.Integer1 & " is equal to " & ARGUMENTS.Integer2 & ")";
		}
		if ( ARGUMENTS.Integer1 NEQ ARGUMENTS.Integer2 ) {
			VARIABLES.Result = VARIABLES.Result & "(" & ARGUMENTS.Integer1 & " is not equal to " & ARGUMENTS.Integer2 & ")";
		}
		return VARIABLES.Result;
	}



  

You may also check:How to resolve the algorithm Date manipulation step by step in the Delphi programming language
You may also check:How to resolve the algorithm Multiple distinct objects step by step in the Factor programming language
You may also check:How to resolve the algorithm 99 bottles of beer step by step in the Raven programming language
You may also check:How to resolve the algorithm Multiplicative order step by step in the Mathematica/Wolfram Language programming language
You may also check:How to resolve the algorithm Matrix transposition step by step in the Arturo programming language