- 博客(65)
- 资源 (1)
- 收藏
- 关注
原创 编写程序求出ax^2+bx+c的解并指出方程的实根
3个系数、b、用输,并根据的大小判断是否有实数根 有两实数,输出“方程有两个实数根分别为:1 2”有一个实数根,输出“程有一个实数根为:1”(保留3位小数,并进行四舍五入),否则输出“方程没有实数根”样例1:输入:152输出:方程有两个实数根分别为:-0.438 -4.562样例2:输入:2-42输出:方程有一个实数根为: 1.000样例3:输入:123输出:方程没有实数根
2023-01-08 15:45:23
702
原创 乔普发现了藏宝图的和密,他打算去挖宝藏。可他来到宝藏入口处,要知道密码才能进入宝藏。经过观察,发现逵个密码的规律并不难,根据入口处石门上的字符串,将字符串里的所有数字加起就是这个密码。
乔普发现了藏宝图的和密,他打算去挖宝藏。可他来到宝藏入口处,要知道密码才能进入宝藏。经过观察,发现逵个密码的规律并不难,根据入口处石门上的字符串,将字符串里的所有数字(连续在一起的数字算一个数字)加起来,就是这个密码。例如,字符串asd123asd4b,对应的密码应该为:123+4=127.输入格式:第一行一个字符串。(不包含空格)输出格式:一个整数表示密码。输入样例1: asd123asd4b输入样例1: 127
2023-01-08 15:16:23
195
原创 编写程序显示4号影厅的座位图。影厅是9排座位,每排有9个座位。要求: 以方阵的形式显示座位图 没有订票的座位显示0,订票的座位显示1 每排座位左侧显示排号1-9
编写程序显示4号影厅的座位图。影厅是9排座位,每排有9个座位。要求:以方阵的形式显示座位图没有订票的座位显示0,订票的座位显示1每排座位左侧显示排号1-9
2022-07-14 07:46:17
235
原创 利用sql建立教材数据库并定义以下基本表:学生(学号,年龄,性别,系名)教材(编号,书名,出版社编号,价格)订购(学号,书号,数量)出版社(编号,名称,地址)定义主码、外码、和价格、数数量的取值范围
利用sql建立教材数据库,并定义以下基本表:学生(学号,年龄,性别,系名) 教材(编号,书名,出版社编号,价格)订购(学号,书号,数量)出版社(编号,名称,地址)定义主码、外码、和价格、数量的取值范围。2 在三个表中输入若干记录,注意如果输入违反完整性约束条件的记录系统有何反应。...
2022-06-13 19:14:24
2536
原创 面向对象透镜不确定度的计算
#include<iostream>#include<cmath>using namespace std;class scale{public: scale(double=0.0, double=0.0, double=0.0, double=0.0, int=0, int=0); void get_value(); void function(); void display();private: double A, B, C, m; int i, n;};
2022-06-13 18:53:01
194
原创 用贪心准则解决背包问题
//用贪心准则解决背包问题#include<iostream>#include<iomanip>#define length 100using namespace std;//以重量为贪心准则void WeightCriterion(int n, int c, int* wc, double* vc){ int i, j, weight; double w[length], v[length], value; for (i = 1; i <= n; i++)
2022-05-31 17:34:05
124
原创 活动安排问题
//活动安排问题#include<iostream>#include<iomanip>#define Length 24using namespace std;//使用“将结束时间早的活动尽量先排"作为贪心准则。void GreedySelectorEndTime(int n, int s[],int f[]){ int i, j, t, temp, end[Length], a[Length], num = 1; for (j = 1; j <= n - 1
2022-05-31 17:33:03
134
原创 电路布线问题
//电路布线问题#include <iostream>#include<iomanip>#define L 100using namespace std;void mnset(int n, int c[], int size[L][L]){ for (int j = 0; j <= c[1]; j++) size[1][j] = 0;//初始化 for (int j = c[1]; j <= n; j++) size[1][j] = 1;//siz
2022-05-31 17:32:05
266
原创 最长公共子序列
//求解最长公共子序列#include<iostream>#include<stdio.h>#include<iomanip>using namespace std;const int length = 100;void LCSLength(int m, int n, char* x, char* y, int** c, int** b){ int i, j; for (i = 0; i <= m; i++) { c[i][0] = 0;
2022-05-31 17:27:15
101
原创 矩阵连乘问题
#include <stdio.h>#include <iomanip>#include <iostream>using namespace std;const int L = 7;void MatrixChain(int n, int** m, int** s, int* p);void PrintAnswer(int** s, int i, int j);//构造最优解void outputArray(int** s);int main(){ i.
2022-05-31 17:22:05
113
原创 0 - 1背包问题
#include<iostream>#include <algorithm>#include<iomanip>#define length 20using namespace std;int V[length][length] = { 0 };int KnapSack(int n, int C, int w[5], int v[5], int x[5]) { int i, j; for (i = 0; i <= n; i++) V+[0] = 0
2022-05-31 17:21:26
81
原创 磁盘空间管理
import java.awt.BorderLayout;import java.awt.FlowLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.JButton;import javax.swing.JFrame;import javax.swing.JLabel;import javax.swing.JOptionPane;import java
2022-05-08 14:55:20
397
原创 服务器并行访问控制 * 内容要求:编写算法,模拟实现服务器并行访问控制。具体实现要求如下:1创建3个服务器线程;2创建1个服务器并行管理线程;3.创建10个客户线程,随机向服务管理线程提出请求
public class Java { static class Client { final int time; final int id; Client(int id) { this.time = (new Random().nextInt(10) + 1) * 1000 * 1; this.id = id; } } static class Request
2022-05-08 14:53:31
358
1
原创 md5加密
import java.math.BigInteger;import java.security.MessageDigest;import java.util.*;public class Java { /** * 对字符串md5加密(小写字母+数字) * * @param str 传入要加密的字符串 * @return MD5加密后的字符串 */ public static String getMD5(String str) {
2022-05-08 14:51:17
1094
原创 java实现选课系统和课程管理
//javafx用jdk8import javafx.application.*;import javafx.beans.value.ChangeListener;import javafx.beans.value.ObservableValue;import javafx.geometry.*;import java.sql.*;import javafx.scene.Scene;import javafx.stage.Stage;import javafx.util.StringConv
2022-05-08 14:48:48
1288
原创 实现一个小型的图形绘制画板,包括直线、矩形、椭圆、多边形等基本图形
//javafx用jdk8版本import javafx.application.Application;import javafx.collections.*;import javafx.scene.*;import javafx.scene.layout.*;import javafx.scene.paint.Color;import javafx.stage.*;import javafx.event.*;import javafx.geometry.Insets;import ja
2022-05-08 14:45:07
613
原创 实现数据库的连接,动态增、删、改、查功能 具体要求:1、实现一个小型通讯录 2、能够实现个人通讯录列表的显示,表格显示 3、能够实现通讯录信息的动态增加、修改和删除 4、多个账号登录后通讯录列表独立
//javafx选用jdk8import java.sql.*;import java.io.*;import java.security.acl.Group;import javafx.application.*;import javafx.beans.value.*;import javafx.collections.*;import javafx.geometry.*;import javafx.scene.Scene;import javafx.stage.FileChooser;
2022-05-08 14:38:28
1576
原创 使用前需先登录,登录成功后方可使用,登录用户名和密码保存在一个文本文件中,可添加好友,好友信息包括:姓名、性别。输入姓名,点击查询,将给好友信息进行显年龄、爱好、现居住城市,点击保存将信息保存到文件
//javafx用jdk8版本import javafx.application.Application;import javafx.application.Platform;import javafx.beans.value.ChangeListener;import javafx.beans.value.ObservableValue;import javafx.collections.FXCollections;import javafx.collections.ObservableLis
2022-05-08 14:32:21
1297
原创 java实现通讯录功能
import java.util.*;import java.text.*;import java.io.*;//联系人类class Linkman { Linkman(String n,String[] p,String w,String c,String e,String b,String r){ name=n; phone=p; work=w; call=c; email=e; birthday=b; remark=r; } Linkman
2022-05-08 14:25:06
141
原创 java实现日记本功能
/***javafx用jdk8版本*/import javafx.application.Application;import javafx.application.Platform;import javafx.event.EventHandler;import javafx.geometry.Pos;import javafx.stage.FileChooser;import javafx.stage.Stage;import javafx.stage.Window;import j
2022-05-08 14:22:18
1464
原创 实现记事本的新建,保存,打开,另存为等功能
/**java实现记事本功能*/import java.awt.*;import java.awt.event.*;import java.io.*;public class Java{ private Frame fr; private TextArea ta; private MenuBar bar; private Menu m; private MenuItem mi1,mi2,mi3,mi4,mi5; private Font font; private Dialog
2022-05-08 14:18:15
734
1
原创 多边形游戏问题
#include<iostream>#include<stdio.h>using namespace std;#define n 4int m[100][100][100];char op[100];int v[100];int minf, maxf;void minMax(int i, int s, int j){ int e[5]; int a = m+[s][0], b = m+[s][1], r = (i + s - 1) % n + 1; i
2022-05-07 15:05:01
733
原创 求最长公共子序列
#include<iostream>#include<stdio.h>#include<iomanip>using namespace std;const int length = 100;void LCSLength(int m, int n, char* x, char* y, int** c, int** b){ int i, j; for (i = 0; i <= m; i++) { c+[0] = 0; b+[0] = 0; }
2022-05-07 15:04:25
94
原创 棋盘覆盖算法
#include<iostream>#include<cmath>using namespace std;int tile = 1;void ChessBoard(int* (*Board), int tr, int tc, int dr, int dc, int size){ if (size == 1) { return; } int t = tile++; int s = size / 2; if (dr < tr + s &&
2022-05-07 15:02:59
129
原创 用单链表实现学生成绩的管理
#include<iostream>#include<string>#include<malloc.h>using namespace std;typedef struct NodeList{ string num; string name; int chinese; int math; int english; struct NodeList* next;}List;void create(List* &L){ int i; Li
2022-05-07 15:02:08
259
原创 二叉树的遍历
#include<iostream>#include<cstdio>#include<stdlib.h>using namespace std;typedef struct BiTnode{ int data; struct BiTnode* Lchild, * Rchild;}BiTnode, * BiTree;int create(BiTree* T){ int ch, temp; cin >> ch; temp = getcha
2022-05-07 15:00:48
285
原创 进程控制模拟算法
#include<stdio.h>#include<stdlib.h>#include<string>#include <windows.h>#include<tlhelp32.h>#define N 10struct pb{ int ko; int no; int cha;};typedef struct pb PCB;PCB a[N];int showallproc(){ PROCESSENTRY32 pe32;
2022-05-07 14:58:51
234
原创 课程设计:公交线路管理系统
#include <iostream>#include <string>#include<iomanip>#include <fstream>using namespace std;#define N 20class Bus{public: Bus(); Bus(int nu, string na, string ty, string st, string te); ~Bus() { } int number; //编号 st
2022-05-07 14:56:35
1657
2
原创 课程设计:高校工资管理系统
#include<iostream>#include<string>#include<iomanip>#include<fstream>using namespace std;class person{public: person(); person(int nu, int ty, string na, string se, int ag, string par, string st, double pa, person * next);
2022-05-07 14:55:04
753
原创 高等院校人事信息管理系统
#include<iostream>#include<string>#include<fstream> //包含文件流对象文件#include<iomanip>using namespace std;class person //员工类的定义{protected: int no; //编号 char name[20]; //姓名 char sex[10]; //性
2022-05-07 14:54:03
369
1
原创 音叉公振频率与双臂质量的计算关系
#include<iostream>#include<iomanip>using namespace std;int main(){ double T[5], f[5], f0, m; cout << "请输入个质量对应的频率" << endl; for (int i = 0; i < 5; i++) { cin >> f+; T+ = 1.0 / pow(f+, 2); } for (int i = 0; i &
2022-05-07 14:52:41
512
原创 分光计的不确定度的程序
#include<iostream>#include<cmath>#define pi 3.1415926using namespace std;int main(){ double sum1 = 0, sum2 = 0, asum1 = 0.0,asum2=0; double s[5], average1, average2, u1, u2; double U1, U2, U, B, d[5]; int i; cout << "please inpu
2022-05-02 20:00:17
1425
原创 有五个学生的数据。要求1.把他们存放在磁盘文件中。将磁盘文件中的第1,3,5个学生数据读入程序,并显示出来。将 第三个学生的数据修改后存放回磁盘文件中的原有位置。从磁盘文件读入修改后的数据
#include<iostream>#include<fstream>using namespace std;struct student{ int num; char name[30]; char score;};int main(){ student stud[5] = { 1001,"li",85,1002,"Fang",97.5,1004,"Wang",56,1006,"Tian",76.5,1010,"ling",96 }; fstream iofi
2022-05-02 19:57:19
285
原创 将一批数据以二进制形势存放在磁盘文件中
#include<fstream>#include<iostream>using namespace std;struct student{ char name[20]; int num; int age; char sex;};int main(){ student stud[3] = { "li",1001,18,'f',"fang",1002,19,'m',1004,17,'f' }; ofstream outfile("stud.dat", ios:
2022-05-02 19:53:56
302
原创 从键盘上读入一行字符,把其中的字母依旧存放在磁盘文件fa.dat中。再把它从磁盘文件读入程序,将其中的小写字 字母改为大写字母,再存放在磁盘文件f3.dat
#include<fstream>#include<iostream>using namespace std;void save_to_file(){ ofstream outfile("f2.dat"); if (!outfile) { cerr << "open fa.dat error!" << endl; exit(1); } char c[80]; cin.getline(c, 80); for(int i=0;c+!=
2022-05-02 19:51:53
196
原创 多重继承与虚基类的使用
#include<iostream>#include<string>using namespace std;class person{public: person(string = " ", char = ' ', int = 0); void setperson(); void displayperson();private: string name; char sex; int age;};person::person(string n, char s
2022-05-02 19:49:11
102
原创 编写程序在circle类中实现关系运算符(大于,小于,等于),实现按照半径circle对象排序。 自己定义类中所需的成品。实现上述功能
#include<iostream>#include<cmath>#include<iomanip>#define pi 3.1415926using namespace std;class circle{public: circle() { radius = 0; } circle(double); double area(); friend bool operator >(circle&, circle&); friend
2022-05-02 19:47:56
370
原创 有一篇文章,共3行文字,每行80个字符。要求分别统计其中英文大写字母,小写字母,数字,空格以及其他字符的个数
#include<iostream>#include<string>#define m 80using namespace std;int main(){ int i, j, upper, lower, num, space, other; char str[3][m]; upper = 0, lower = 0, num = 0, space = 0, other = 0; for (i = 0; i < 3; i++) { cout <<
2022-05-02 19:10:48
2369
1
文件的查找与替换.txt
2019-12-16
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人