首页上一页 1 下一页尾页 1 条记录 1/1页
请问程序哪里出错了?
发表在C#图书答疑
2013-03-14
是否精华
是
否
版块置顶:
是
否
你好,我是菜鸟,刚刚开始自学C#,请问这个程序哪里出了错?我想表达的是计算出他们的和。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
float x = 1.1f;
float y = 1.8f;
float z = 0.1f;
Console.WriteLine("x+y+z={0}+{1}+{2}", x, y, z); //这个也运行不出来
第2种
float x = 1.1f;
float y = 1.8f;
float z = 0.1f;
float h ;
h = x + y + z;
Console.WriteLine("x+y+z="h.ToString()); //也报错
第3种
float x = 1.1f;
float y = 1.8f;
float z = 0.1f;
float h = 0;
h = x + y + z;
Console.WriteLine("x+y+z={0}",h); //出错
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
float x = 1.1f;
float y = 1.8f;
float z = 0.1f;
Console.WriteLine("x+y+z={0}+{1}+{2}", x, y, z); //这个也运行不出来
第2种
float x = 1.1f;
float y = 1.8f;
float z = 0.1f;
float h ;
h = x + y + z;
Console.WriteLine("x+y+z="h.ToString()); //也报错
第3种
float x = 1.1f;
float y = 1.8f;
float z = 0.1f;
float h = 0;
h = x + y + z;
Console.WriteLine("x+y+z={0}",h); //出错
}