using System;
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
double x = 13.9, y = 24.4;
Console.WriteLine(x * 0.5 + y * 0.5);
}
}
}
using System.Collections.Generic;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
double x = 13.9, y = 24.4;
Console.WriteLine(x * 0.5 + y * 0.5);
}
}
}
2016-09-23