摘要: 一.软件实现 本次作业采用visual studio ,c#语言,access数据库 (一)登录界面 1.代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data 阅读全文
posted @ 2023-12-03 11:57 超级马立奥 阅读(71) 评论(0) 推荐(0)
摘要: 可实现加、减、乘、除、开平方的计算器软件的实验设计 1、思路代码: #include <stdio.h>#include <math.h> // 牛顿迭代法计算平方根double sqrt_newton(double x) {double guess = x / 2.0; // 初始猜测值为x的一半 阅读全文
posted @ 2023-10-13 20:49 超级马立奥 阅读(65) 评论(0) 推荐(0)