Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-448.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5ae9abdc74d462d9b2b0e2561357fa909c198c35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

public class MonoDivideProblem
{
	static uint dividend = 0x80000000;
	static uint divisor = 1;
	public static void Main(string[] args)
	{
		Console.WriteLine("Dividend/Divisor = {0}", dividend/divisor);
	}

}