-
Notifications
You must be signed in to change notification settings - Fork 89
Floating Point Arithmetic Sample
CodingUnit edited this page Nov 28, 2011
·
4 revisions
- Category: Arithmetic
- Description: This sample shows some basic floating point arithmetic
- Code:
using System;
using System.Console;
def x = 20.0 + 35.0 - 4.0;
def y = x * 3.0 + 1.0;
def r1 = x / 2.5;
WriteLine($"x = $x, y = $y, r1 = $r1")
- Execution Result:
x = 51, y = 154, r1 = 20.4
- Copyright