C#题编写一个进行加减乘除四则运算的程序,要求;输出2个单精度数,然后输入一个运算符号,输出结果

如题所述

新鲜出炉的,来吧。
  class Program
    {
        static void Main(string[] args)
        {
            while (true)
            {
                Calcu();
                Console.WriteLine("是否继续执行循环?Y/N");
                string s = Console.ReadLine();
                if (s.ToUpper() == "Y")
                {
                    Calcu();
                    continue;
                }
                break;
            }
        }

        static void Calcu()
        {
            Console.WriteLine("请输入第一个数字:");
            float num1 = 0;
            float num2 = 0;
            string fuhao = "";
            while (true)
            {
                try
                {
                    num1 = Convert.ToSingle(Console.ReadLine());
                    break;
                }
                catch (Exception)
                {
                    num1 = 0;
                    Console.WriteLine("输入错误,请重新输入第一个数字:");
                }
            }
            Console.WriteLine("请输入第二个数字:");
            while (true)
            {
                try
                {
                    num2 = Convert.ToSingle(Console.ReadLine());
                    break;
                }
                catch (Exception)
                {
                    num2 = 0;
                    Console.WriteLine("输入错误,请重新输入第二个数字:");
                }
            }
            Console.WriteLine("请输入运算符(+ - * /):");
            while (true)
            {
                try
                {
                    fuhao = Console.ReadLine();
                    if (fuhao == "+" || fuhao == "-" || fuhao == "*" || fuhao == "/")
                        break;
                    fuhao = "";
                    Console.WriteLine("运算符输入错误,请重新输入运算符(+ - * /):");
                }
                catch (Exception)
                {
                    fuhao = "";
                    Console.WriteLine("运算符输入错误,请重新输入运算符(+ - * /)");
                }
            }
            float num = 0;
            switch (fuhao)
            {
                case "+": num = num1 + num2; break;
                case "-": num = num1 - num2; break;
                case "*": num = num1 * num2; break;
                case "/": num = num1 / num2; break;
            }
            Console.WriteLine("运算结果出炉: "+num1 + fuhao + num2 + "=" + num);
        }
    }

温馨提示:内容为网友见解,仅供参考
无其他回答

想深入学习C#语言,有没有达人知道C#的好的资料呢?
32. 编写一个进行加减乘除四则运算的程序,要求:输入两个单精度数,然后输入一个运算符号,输出两个单精度数进行运算后的结果。要求编写为控制台程序。33. 兔子繁殖问题。设有一对新生的兔子,从第三个月开始他们每个月都生一对兔子,新生的兔子从第三个月开始又每个月生一对兔子。按此规律,并假定兔子没有死亡,20...

c# 使用控制台程序编写一个简单的四则运算计算器
Console.WriteLine("第er个数:");int b = Int32.Parse(Console.ReadLine());\/\/int c = a + b;\/\/Console.WriteLine("两个数和为:{0}",c);switch (str) { case '+':Console.WriteLine("两个数和为:{0}", a+b);break;case '-':Console.WriteLine("两个数差为:{0}", a-b...

编制一个四则运算计算器(WEB应用程序使用C#)
因为涉及控件设计,直接给你FRM文件吧。把下面的代码保存到后缀名为.FRM的文件中。=== VERSION 5.00 Begin VB.Form Form1 Caption = "Form1"ClientHeight = 3150 ClientLeft = 60 ClientTop = 390 ClientWidth = 4680 LinkTopic = "Form1"ScaleHeight ...

c#控制台程序,实现两个整数的四则运算,根据用户输入运算符,使用switch...
\/\/选择运算符 Console.WriteLine("请选择运算符:1.+ 2.- 3.x 4.\/ 5.%"); string fun = Console.ReadLine(); switch (fun) { case "1": case "+"

用C#言语利用控制台编写一个四则运算的C#程序(求和、差、积和商)
这个四则运算程序是循环的,并且运算符输错会提示重新输入 using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace 计算器 { class Program { static void Main(string[] args){ int x = 1;do { Console.Write("请输入第一个数字:");double a = Convert....

C# 我写一个小计算器的程序,我想定义一个类calculator,把加减乘...
{ static void Main(string[] args){ calculator a = new calculator();a.ADD(1, 2);a.Minus(2, 1);a.Multiply(2, 2);a.Except(2, 2);} public class calculator { public int ADD(int a, int b){ return a + b;} public int Minus(int a, int b){ return a - b;} pub...

c语言用switch编写一个简单的四则运算程序
float fFloat1=.0,fFloat2=.0;char cOP=NULL;printf("请输入要进行四则运算表达式:\\n");scanf("%f%c%f",&fFloat1,&cOP,&fFloat2);switch(cOP){ case '+':printf("%f+%f=%f\\n",fFloat1,fFloat2,fFloat1+fFloat2);break;case '-':printf("%f-%f=%f\\n",fFloat1,fFloat2,f...

c#窗体中如何实现计算器的加减乘除功能
1 拖控件你会吧,把控件拖到窗体上,起好名字(最好与Text属性对应)。布局。2 双击按钮创建每个按钮的单击事件,对每个事件写处理方法,除了计算按钮别的都很简单,只是给文本框赋值。注意,文本框是右对齐的。3 在面板上放三个LISTBOX 设置VISIBLE = false ,第一个存放首操作数,第二个存放计算符号,第三个存放末操...

C语言 四则运算程序 高手帮帮忙!!!
y=rand()%100+1;} void choose(){ int yunsuan(int,int,int);if(sum==0) precent=0.0;else precent=(float)right\/sum;printf("\\n如需进行加减乘除运算测试,请分别输入1、2、3、4\\n");printf("如需退出请输入5\\n");choice=scan();switch(choice){ case 1:printf("欢迎来到加法运算...

编写小学生100以内四则运算数学测试游戏,
填写运算符号 3+3-3-3=0 3*3\/3\/3=1 3\/3+3\/3=2 3*3-3-3=3 (3\/3)^3+3=4 注:1的3次方等于1 3+3-3\/3=5 3+3+3-3=6 3+3+3\/3=7 3*3-3\/3=8 3*3*3\/3=9 3*3+3\/3=10

相似回答