上一页 1 2 3 4 5 6 7 ··· 14 下一页
摘要: #include <iostream> #include <opencv2/opencv.hpp> using namespace cv; using namespace std; int main() { //图像的读取 Mat img = imread("C:/img/3.jpg", IMREA 阅读全文
posted @ 2024-01-07 17:17 wshidaboss 阅读(298) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; void swap(int* a, int* b) { int tmp = *a; *a = *b; *b = tmp; } void selectSort(int ret[], int n) { for (int i 阅读全文
posted @ 2024-01-03 16:13 wshidaboss 阅读(8) 评论(0) 推荐(0) 编辑
摘要: VS 2022编译Qt项目时出现以下问题: C:\Users\xu\AppData\Local\QtMsBuild\qt_globals.targets(765,7): error MSB4184: 无法计算表达式“[System.IO.File]::ReadAllText(C:\Users\xu\ 阅读全文
posted @ 2024-01-02 15:48 wshidaboss 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 通过下面的工作来改进String类声明(即将String1.h升级为String2.h)。 a. 对+运算符进行重载,使之可将两个字符串合并成一个。 b. 提供一个Stringlow()成员函数,将字符串中所有的字母字符转换为小写(别忘了cctype系列字符函数)。 c. 提供String()成员函 阅读全文
posted @ 2023-12-31 18:41 wshidaboss 阅读(22) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <vector> using namespace std; static int num = 0; struct Donation { string name ; double money = 0; }; int avg(int &a,int 阅读全文
posted @ 2023-12-14 20:01 wshidaboss 阅读(38) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <fstream> using namespace std; int main(){ fstream filename; int num = 0; char c; filename.open("test.txt", ios::in); whi 阅读全文
posted @ 2023-12-14 15:11 wshidaboss 阅读(22) 评论(0) 推荐(0) 编辑
摘要: 编写一个程序,记录捐助给“维护合法权利团体”的资金。该程序要求用户输入捐献者数目,然后要求用户输入每一个捐献者的姓名和款项。这些信息被储存在一个动态分配的结构数组中。每个结构有两个成员:用来储存姓名的字符数组(或 string 对象)和用来存储款项的 double 成员。读取所有的数据后程序将显示所 阅读全文
posted @ 2023-12-14 13:48 wshidaboss 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 找了一下网上的代码,都不怎么简洁明了,故特此记录。 #include <iostream> #include <math.h> using namespace std; int main() { int year = 0; double A = 100; double B = 100; while 阅读全文
posted @ 2023-12-12 11:34 wshidaboss 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 今天在做一个C++项目时遇到了如下问题: 找了好久的百度,结果发现只要把这段报错的程序换一下位置,放到运算符重载函数的下面就可以了,因为编译器是按顺序执行的。。。 还有一种情况是,运算符重载函数的参数前要加const: 阅读全文
posted @ 2023-10-21 21:09 wshidaboss 阅读(517) 评论(0) 推荐(0) 编辑
摘要: #include <graphics.h> #include <iostream> #include <Windows.h> #include <string> #include <conio.h> using namespace std; #define LINE 9 //行数 #define C 阅读全文
posted @ 2023-10-07 20:37 wshidaboss 阅读(348) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 ··· 14 下一页