Mathematische Operatoren

PHP

<?php
$w = 5;
$x = 1;
$y = 2;
$z = 10;

/* Addieren */
echo ($y + $z);

/* Subtrahieren */
echo ($z - $w);

/* Mulitplikation */
echo ($x * $z);

/* Division */
echo ($z / $y);

/* Modulo-Rechnung */
echo ($z % 5);

/* Punkt vor Strich - Die Formeln in Klammern ist freiwillig */
echo ($x + ($z * $y));
?>

Python

w = 5
x = 1
y = 2
z = 10

# Addieren
print(y + z)

# Subtrahieren
print(z - w)

# Multiplikation
print(x * z)

# Division
print(z / y)

# Modulo-Rechnung
print(z % 5)

# Punkt vor Strich - Die Formeln in Klammern ist freiwillig
print(x + (z * y))

Java

package Javaübungen;

public class MathemtischeOperatoren {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		
		int w = 5;
		int x = 1;
		int y = 2;
		int z = 10;
			
		// Addieren 
		System.out.print(y + z);
		
		// Subtrahieren 
		System.out.print(z - w);
		
		// Multiplikation
		System.out.print(x * z);
		
		// Division 
		System.out.print(z / y);
		
		// Modulo-Rechnung
		System.out.print(z % 5);
		
		// Punkt vor Strich - Die Formeln in Klammern ist freiwillig
		System.out.print(x + (z * y));

	}

}