自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 收藏
  • 关注

原创 VS2010奇怪报错

如果是一直运行顺畅的代码突然提示“调用的目标发生异常”,重启电脑。 PS:vs2010不支持一直复制粘贴空间,否则会提示内存不足。

2022-07-20 11:42:49 167 1

原创 C#--计算器

VS2010 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 WindowsForm

2021-12-20 22:11:20 505

原创 Composite类

BJFU-OJ 程序设计 C++实验题 Composite 描述 计算机包含CPU和硬盘。请设计Computer、CPU、Disk类。并满足以下测试 int main() { string cpuType, diskType; double frequency, capacity; cin >> cpuType >> frequency >> diskType >> capacity; CPU cpu(cpuType, frequency); Disk dis

2020-12-06 09:05:00 545

原创 CardGame类

BJFU-OJ 程序设计 C++实验题 CardGame 描述 桌上有一叠牌,从第一张牌(即位于顶面的牌)开始从上往下依次编号为1~n。当至少还剩两张牌时进行以下操作:把第一张牌扔掉,然后把新的第一张放到整叠牌的最后。请模拟这个过程,依次输出每次扔掉的牌以及最后剩下的牌的编号。 输入 输入正整数n(n<1000000)。 输出 在一行内依次输出每次扔掉的牌以及最后剩下的牌的编号,每个编号后跟一个空格。(所有输出最后加一个按行符) 输入样例 1 7 输出样例 1 1 3 5 7 4 2 6 提示 可以用

2020-12-06 09:03:47 520

原创 SimpleList类

BJFU-OJ 程序设计 C++实验题 SimpleList 描述 编写程序,定义一个结构体struct Student{ int no; string name;};并用这个结构体练习使用list。包含往list里添加元素以及输出list的所有元素。 struct Student { int no; string name; }; 并使用以下main函数测试 int main() { std::list li; Input(li); //输入 Show(li); //输出 return 0; } 输入

2020-12-06 09:02:36 1125 2

原创 StringSort类

BJFU-OJ 程序设计 C++实验题 StringSort 描述 编写程序,利用string类完成一个字符串中字符的排序(降序)并输出。 输入 输入仅一行,是一个仅由大小写字母和数字组成的字符串。 输出 输出排序后的字符串。 输入样例 1 abcde 输出样例 1 edcba 提示 使用std::sort 第三个参数是比较函数,本题类似bool Compare(char fisrt, char second); http://en.cppreference.com/w/cpp/algorithm/sort

2020-12-06 09:01:13 841

原创 Search类

BJFU-OJ 程序设计 C++实验题 Search 描述 设计一个模板函数,实现在一个给定的数组中查找给定数据是否存在,如果存在则输出该数据在数组中最小的下标,如果不存在,输出-1。以下为测试函数 int main() { int n; std::cin >> n; int *nValues = new int[n]; for (int i = 0; i < n; i++) { std::cin >> nValues[i]; } int d; std::cin >&g

2020-12-06 08:57:53 462

原创 SortFunctionTemplate类

BJFU-OJ 程序设计 C++实验题 SortFunctionTemplate 描述 用函数模板的方式实现对不同数据类型的数组中的数据进行输入、从小到大排序和输出。 使用如下主函数测试你的模板 int main() { const int LEN = 5; int type; while (cin >> type) { switch (type) { case 0: { int a1[LEN]; Input(a1, LEN); Sort(a1, LEN); Output(a1, LEN); b

2020-12-06 08:54:35 529

原创 Swap类

BJFU-OJ 程序设计 C++实验题 Swap 描述 用函数模板的方式实现对不同数据类型的数组中的数据进行输入、从小到大排序和输出。 使用如下主函数测试你的模板设计一个函数模板Swap,实现任意数据类型的两个数据的交换,分别用int型、double型和char型的数据进行测试 main函数如下: int main() { int a1, a2; cin >> a1 >> a2; Swap(a1, a2); cout << a1 << “,” <<

2020-12-06 08:53:18 541

原创 Complex类

BJFU-OJ 程序设计 C++实验题 Complex类 描述 实现以下复数类Complex,通过运算符重截,实现复数的输入输出以及相关运算。 class Complex { private: double x; double y; public: Complex(double x = 0.0, double y = 0.0); Complex & operator+=(const Complex &); Complex & operator-=(const Complex &amp

2020-12-06 08:51:44 634 1

原创 Sales_data类

BJFU-OJ 程序设计 C++实验题 Sales_data类 描述 实现以下Sales_data类(包括它的友元函数): class Sales_data { //依次输入书号、销量和收入 friend istream & operator>>(istream&, Sales_data &); //依次输出书号、销量、收入和均价 friend ostream & operator<<(ostream &, const Sales_data &

2020-12-06 08:49:39 895

原创 Singer类

BJFU OJ C++ 实验题 Singer类 描述 实现一个Singer类,通过以下测试: int main() { Singer s1,s2; cin>>s1>>s2; cout<<s1<<"\n"<<s2<<endl; if(s1>s2) cout<<s1.getName()<<"'s score is higher than “<<s2.getName()<<”'s.\n

2020-12-06 08:44:43 782

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除