强迫症看这里提交
Console.Write("我的工资奖金总额是{0}元",salary +prize);
Console.WriteLine("我的税后收入是{0}元",salary+ prize- tax);
Console.Write("我的工资奖金总额是{0}元",salary +prize);
Console.WriteLine("我的税后收入是{0}元",salary+ prize- tax);
2016-01-28
using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
double d = 2.5;
int x =(int) d + 1;
Console.WriteLine(x);
}
}
}
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
double d = 2.5;
int x =(int) d + 1;
Console.WriteLine(x);
}
}
}
2016-01-27