帮忙改改下面的代码。
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication14
{
class Program
{
static void Main(string[] args)
{
sbyte a, b;
a ==10; b == 1.879;
Console.WriteLine("wo shi {0},wo shi {1}", a, b);
byte c, d;
c == 10; d == 1.879;
Console.WriteLine("wo shi {0},wo shi {1}", c, d);
short e, f;
e == 10; f == 1.879;
Console.WriteLine("wo shi {0},wo shi {1}", e, f);
ushort g, h;
g == 10; h == 1.879;
Console.WriteLine("wo shi {0},wo shi {1}", g, h);
int i, j;
i == 10; j == 1.879;
Console.WriteLine("wo shi {0},wo shi {1}", i, j);
uint k, l;
k == 10; l == 1.879;
Console.WriteLine("wo shi {0},wo shi {1}", k, l);
long m, n;
m = 10; n = 1.879f;
Console.WriteLine("wo shi {0},wo shi {1}", m, n);
ulong o, p;
o = 10; p = 1.879f;
Console.WriteLine("wo shi {0},wo shi {1}", o, p);
}
}
}