• Statements

    A condition statement is like a question in programming. It helps the computer decide what to do next. For example, if you go to a store, you might ask the shopkeeper if they have what you want. The shopkeeper will answer yes or no, and that will help you decide what to do next. In programming, the computer can ask itself questions to decide what it should do next.

      • If Statements

      • var x = 1;
        
        if (x > 0) {
        	console.log('variable x is greater than zero'); // variable x is greater than zero 
        }
      • void main() {
          var x = 1;
        
          if (x > 0) {
        	print('variable x is greater than zero'); // variable x is greater than zero 
          }
        }
      • import std.stdio : write;
        
        void main()
        {
        	int x = 1;
        
        	if (x > 0) {
        		write("variable x is greater than zero"); // variable x is greater than zero 
        	}
        }
        
      • <?php
        $x = 1;
        
        if ($x > 0) {
        	print('variable x is greater than zero'); // variable x is greater than zero 
        }
      • x = 1
        
        if x > 0:
        	print('variable x is greater than zero') # variable x is greater than zero 
        
      • package main
        
        import "fmt"
        
        func main() {
        	var x int = 1
        
        	if x > 0 {
        		fmt.Println("variable x is greater than zero") // variable x is greater than zero
        	}
        }
        
      • Else Statements

      • var x = 1;
        
        if (x > 0) {
        	console.log('variable x is greater than zero'); // variable x is greater than zero 
        } else {
        	console.log('else, variable x is zero or less'); // else, variable x is zero or less
        }
      • void main() {
          var x = 1;
        
          if (x > 0) {
        	print('variable x is greater than zero'); // variable x is greater than zero 
          } else {
        	print('else, variable x is zero or less'); // else, variable x is zero or less
          }
        }
      • import std.stdio : write;
        
        void main()
        {
        	int x = 1;
        
        	if (x > 0) {
        		write("variable x is greater than zero"); // variable x is greater than zero 
        	} else {
        		write("else, variable x is zero or less"); // else, variable x is zero or less
        	}
        }
        
      • <?php
        $x = 1;
        
        if ($x > 0) {
        	print('variable x is greater than zero'); // variable x is greater than zero 
        } else {
        	print('else, variable x is zero or less'); // else, variable x is zero or less
        }
      • x = 1
        
        if x > 0:
        	print('variable x is greater than zero') # variable x is greater than zero
        else:
        	print('else, variable x is zero or less') # else, variable x is zero or less
        
      • package main
        
        import "fmt"
        
        func main() {
        	var x int = 1
        
        	if x > 0 {
        		fmt.Println("variable x is greater than zero") // variable x is greater than zero
        	} else {
        		fmt.Println("else, variable x is zero or less") // else, variable x is zero or less
        	}
        }
        
      • Else If Statements

      • var x = 1;
        
        if (x > 0) {
        	console.log('variable x is greater than zero'); // variable x is greater than zero 
        } else if (x == 0) {
        	console.log('else if, variable x is zero'); // else if, variable x is zero
        }
      • void main() {
          var x = 1;
        
          if (x > 0) {
        	print('variable x is greater than zero'); // variable x is greater than zero 
          } else if (x == 0) {
        	print('else if, variable x is zero'); // else if, variable x is zero
          }
        }
      • import std.stdio : write;
        
        void main()
        {
        	int x = 1;
        
        	if (x > 0) {
        		write("variable x is greater than zero"); // variable x is greater than zero 
        	} else if (x == 0) {
        		write("else if, variable x is zero"); // else if, variable x is zero
        	}
        }
        
      • <?php
        $x = 1;
        
        if ($x > 0) {
        	print('variable x is greater than zero'); // variable x is greater than zero 
        } elseif ($x == 0) {
        	print('else if, variable x is zero'); // else if, variable x is zero
        }
      • x = 1
        
        if x > 0:
        	print('variable x is greater than zero') # variable x is greater than zero 
        elif x == 0:
        	print('else if, variable x is zero') # else if, variable x is zero
        
      • package main
        
        import "fmt"
        
        func main() {
        	var x int = 1
        
        	if x > 0 {
        		fmt.Println("variable x is greater than zero") // variable x is greater than zero
        	} else if x == 0 {
        		fmt.Println("") // else if, variable x is zero
        	}
        }
        
      • Switch Statements

      • var x = 1;
        
        var result = '';
        switch (x) {
        	case 0:
        		result = 'variable x is integer zero';
        		break;
        	case 1:
        		result = 'variable x is integer one';
        		break;
        	default:
        		result = 'variable x is anything else';
        }
        
        console.log(result); // variable x is integer one
      • void main() {
          var x = 1;
        
          var result = '';
          switch (x) {
        	case 0:
        	  result = 'variable x is integer zero';
        	  break;
        	case 1:
        	  result = 'variable x is integer one';
        	  break;
        	default:
        	  result = 'variable x is anything else';
          }
        
          print(result); // variable x is integer one
        }
        
      • import std.stdio : write;
        import std.string;
        
        void main()
        {
        	int x = 1;
        
        	string result;
        	switch (x) {
        		case 0:
        			result = "variable x is integer zero";
        			break;
        		case 1:
        			result = "variable x is integer one";
        			break;
        		default:
        			result = "variable x is anything else";
        	}
        
        	write(result); // variable x is integer one
        }
        
      • <?php
        $x = 1;
        
        $result = '';
        switch ($x) {
        	case 0:
        		$result = 'variable x is integer zero';
        		break;
        	case 1:
        		$result = 'variable x is integer one';
        		break;
        	default:
        		$result = 'variable x is anything else';
        }
        
        print($result); // variable x is integer one
      • x = 1
        
        result = ''
        match x:
        	case 0:
        		result = 'variable x is integer zero'
        
        	case 1:
        		result = 'variable x is integer one'
        
        	case _:
        		result = 'variable x is anything else'
        
        print(result)  # variable x is integer one
        
      • package main
        
        import "fmt"
        
        func main() {
        	var x int = 1
        
        	var result string
        	switch x {
        	case 0:
        		result = "variable x is integer zero"
        
        	case 1:
        		result = "variable x is integer one"
        
        	default:
        		result = "variable x is anything else"
        	}
        
        	fmt.Println(result) // variable x is integer one
        }