用c++ 实现一个非常简单的复数计算器,并将结果保存在result.txt文本文件中 象征性地收取积分
2021-09-11 10:40:25 7KB c++面向对 复数计算 操作符重载
1
c++课设做的,一个比较简单的复数计算器,仅供学习参考
2021-07-10 00:14:43 53.43MB MFC
1
界面采用WindowsBuilder构建,实现实数与复数的加减乘除四则运算,有较好的容错处理。
2021-06-18 20:38:21 18KB java
1
用c#写的 简易复数计算器 新手入门 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace 赵巍_复数计算器 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } int flag=2,flag1=0; char fuhao1; string str=""; public struct cpxNum //复数的结构 { public double real; public double imag; public cpxNum(double real, double imag) { this.real = real; this.imag = imag; } } cpxNum num1, num2, num3 = new cpxNum(0, 0);//定义三个复数 public cpxNum CAdd(cpxNum num1, cpxNum num2) //加法运算函数 { num3 = new cpxNum((num1.real + num2.real), (num1.imag + num2.imag)); return num3; } public cpxNum CSub(cpxNum num1, cpxNum num2) //减法运算函数 { num3 = new cpxNum((num1.real - num2.real), (num1.imag - num2.imag)); return num3; } public cpxNum CMul(cpxNum num1, cpxNum num2) //乘法运算函数 { num3 = new cpxNum((num1.real * num2.real - num1.imag * num2.imag), (num1.real * num2.imag + num1.imag * num2.real)); return num3; } public cpxNum CDiv(cpxNum num1, cpxNum num2) //除法运算函数 { num3 = new cpxNum((num1.real * num2.real + num1.imag * num2.imag) / (num2.real * num2.real + num2.imag * num2.imag), (num2.real * num1.imag - num1.real * num2.imag) / (num2.real * num2.real + num2.imag * num2.imag)); return num3; } private void shu_chu(int flag1, string str1, string str2) //输出子函数 { //flag1标志 为0 将保存的字符串在textBox3和textBox4输出 if (flag1 == 0)
2021-06-06 21:46:45 412KB 复数计算器
1
界面采用WindowsBuilder构建,实现实数与复数的加减乘除四则运算,有较好的容错处理。
2021-05-10 14:59:26 20KB 数据结构实验
1
MFC 实现复数计算器 包含资源文件和源码 直接用VC 可以加载和运行。。。
2021-03-01 23:28:29 31.5MB MFC 复数计算器 源码
1
MFC写的复数计算器,用作C++选修课最后的作业。
2019-12-21 21:12:36 2.17MB MFC C++ 计算器 复数
1
混合复数计算器
2019-12-21 20:18:25 187KB 计算器
1
学长亲自写的,90+分,有问题请发邮件eebbk@163.com
2019-12-21 20:15:30 358KB 云南大学 数据结构 复数计算器
1