题解列表

筛选

运行没问题 直接复制

摘要:#define _CRT_SECURE_NO_WARNINGS#include <iostream>#include <stdio.h>//#include <cmath>//#include <al……

活动选择c++

摘要:解题思路:结束时间越早,能安排的活动就越多;注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int begin[100……

自己看..............

摘要:#define _CRT_SECURE_NO_WARNINGS#include <iostream>#include <stdio.h>#include <cmath>#include <algori……

哥德巴赫曾猜测

摘要:解题思路:编写一个函数确认两个数是否非素数,并且利用循环得出次数注意事项:参考代码:#include<iostream>using namespace std;int fun(int );int ma……

链表合并(C++)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ int id; int score; student *nex……

结构体之成绩记录(C++)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;struct student{ char id[20]; char name[20]; int……