Skip to content

Instantly share code, notes, and snippets.

View peterthorsteinson's full-sized avatar

Peter Thorsteinson peterthorsteinson

View GitHub Profile
using System;
class Program
{
static void Main(string[] args)
{
int sum;
Console.WriteLine("\n1. Using Convert.ToInt32() without exception handling.");
sum = 0;
foreach (string arg in args)
using System;
namespace MyArithmetic
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine(0.2 + 0.5 == 0.7); // True
Console.WriteLine(0.1 + 0.2 == 0.3); // False
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.