repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
test-448.cs
blob
5ae9abdc74d462d9b2b0e2561357fa909c198c35
1
using
System
;
2
3
public class
MonoDivideProblem
4
{
5
static uint
dividend
=
0x80000000
;
6
static uint
divisor
=
1
;
7
public static void
Main
(
string
[]
args
)
8
{
9
Console
.
WriteLine
(
"Dividend/Divisor =
{0}
"
,
dividend
/
divisor
);
10
}
11
12
}