真心求解
c#吧
全部回复
仅看楼主
level 4
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
Double inputnum;
try
{
inputnum = Convert.ToDouble(Convert.Readline());
}
catch (Exception e)
{
Console.WriteLine("Exception in Main:" + e.Message);
}
}
}
}
这个哪里错了,书上例题
2012年01月09日 01点01分 1
level 7
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
Double inputnum;
try
{
inputnum = Convert.ToDouble(Console.ReadLine());
}
catch (Exception e)
{
Console.WriteLine("Exception in Main:" + e.Message);
}
}
}
}
====================
大家来找茬 = v =
2012年01月09日 01点01分 2
level 4
求解求解呀!
2012年01月09日 02点01分 3
level 7
inputnum = Convert.ToDouble(Console.ReadLine());
[拍砖]你代码打错了,骚年
这个放在VS里就有提示哪里错了的啊
2012年01月09日 02点01分 4
level 7
LS好眼睛 - -+
2012年01月09日 03点01分 5
level 10
有错吗?没错啊!
2012年01月09日 14点01分 6
1