标题:C#入门级问题
取消只看楼主
周李丹
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-3-29
结帖率:100%
已结贴  问题点数:20 回复次数:1 
C#入门级问题
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace _5
{
    class Program
    {
        static void Main(string[] args)
        {
            double d1, d2;
            char op;
            double temp;
            Console.WriteLine("Please input two operand1 operator operatrand2:");
            d1 = Convert.ToDouble(Console.ReadLine( ));
            op = Convert.ToChar(Console.ReadLine( ));
            d2 = Convert.ToDouble(Console.ReadLine( ));
            if (op == '+')
            {
                temp = d1 + d2;
                Console.WriteLine("{0}{1}{2}={3}", d1, op, d2, temp);
            }
            else if (op == '-')
            {
                temp = d1 - d2;
                Console.WriteLine("{0}{1}{2}={3}", d1, op, d2, temp);
            }
            else if (op == '*')
            {
                temp = d1 * d2;
                Console.WriteLine("{0}{1}{2}={3}", d1, op, d2, temp);

            }
            else if (op == '/')
            {
                temp = d1 / d2;
                Console.WriteLine("{0}{1}{2}={3}", d1, op, d2, temp);
            }
            else
                Console.WriteLine("Error!");
                Console.ReadKey();

            }
    }
}
这个是拷贝我们老师的程序,本来是想实现两个数的四则运算,请问为啥实现不了?求详细解释和改正。
搜索更多相关主题的帖子: double 
2012-03-29 18:56
周李丹
Rank: 1
等 级:新手上路
帖 子:4
专家分:0
注 册:2012-3-29
得分:0 
回复 2楼 weiquan715
谢谢
2012-03-29 23:01



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-364714-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.056230 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved