【函数】复数计算

//Copyright (c) 2014软件技术2班  
//All rights reserved.   
//作    者:B01      
// 完成日期:2014年 12 月 09日     
// 版 本 号:v1.0     
// 问题描述:设计复数类Complex,计算两个复数之和、差,同时以 a+bi 的字符串形式显示。
//           使用复数类Complex验证两个复数 1+2i 和3+4i 相加产生一个新的复数 4+6i ,相减产生一个新的复数 -2-2i
// 输入描述:无    
// 程序输出:两个字符串 
//     
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Complex x = new Complex();//创建对象
            x.a = 1;//赋值并引用
            x.b = 2;
            x.a1 = 3;
            x.b1 = 4;
            Console.WriteLine("{0}", x.One());//输出
            x.Two();
            Console.ReadKey();
        }
    }
    class Complex//定义类
    {
        public double a, b, a1, b1;//定义成员
        public string One()//定义成员
        {
            string i = "i";
            string k = "";
            double x, y;
            x=a + a1;
            y=b + b1;
            k = x +"+"+ y + i;
            return k;
        }
        public void Two()//定义成员
        {
            string i = "i";
            double x, y;
            x = a - a1;
            y = b - b1;
            Console.WriteLine("{0}{1}{2}", x, y, i);
        }
    }
}
输出:


总结:学会了创建类和引用对象
     忘了字符串


你可能感兴趣的:(【函数】复数计算)