上一页 1 ··· 5 6 7 8 9
摘要: #include <iostream> using namespace std; struct student { char num[20]; int shi; int kao; }; int main() { student stu[1000]; int n, q, b[1000]; cin >> 阅读全文
posted @ 2016-09-04 22:13 code666 阅读(200) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <algorithm> using namespace std; int a[10]={0}; string s; int main() { cin>>s; int i; for(i = 0; i < s. 阅读全文
posted @ 2016-09-04 07:56 code666 阅读(112) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;int main(){ int a,b,c,m; cin >> a >> b >> c; if (a < b) { if (c > b) cout << a << "->" << b << "->" << c << endl 阅读全文
posted @ 2016-09-03 22:19 code666 阅读(165) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>using namespace std;int main(){ int a, i, k, j, n1,n2; int b = 7; int n = 3; char ch; cin >> a >> ch; if (a < 7) { cout << ch << end 阅读全文
posted @ 2016-09-03 16:58 code666 阅读(123) 评论(0) 推荐(0) 编辑
摘要: #include <cstdio>#include <iostream> using namespace std; int num[1004];int rest[1004]; void preHandle(){ int sum = 1; int cnt = 1; for (int i = 1; i 阅读全文
posted @ 2016-09-03 12:17 code666 阅读(135) 评论(0) 推荐(0) 编辑
摘要: //读取并播放视频#include <opencv2/opencv.hpp>//#include <opencv2/highgui/highgui.hpp>//#include <opencv2/imgproc/imgproc.hpp>using namespace cv;int main(){ V 阅读全文
posted @ 2016-07-18 22:03 code666 阅读(1246) 评论(1) 推荐(1) 编辑
摘要: //canny边缘检测#include <opencv2/highgui/highgui.hpp>#include <opencv2/imgproc/imgproc.hpp>using namespace cv;int main(){ Mat srcImage = imread("2.jpg"); 阅读全文
posted @ 2016-07-18 15:29 code666 阅读(589) 评论(0) 推荐(0) 编辑
摘要: //图像模糊blur函数#include <opencv2/highgui/highgui.hpp>#include <opencv2/imgproc/imgproc.hpp>using namespace cv;int main(){ Mat srcImage = imread("2.jpg"); 阅读全文
posted @ 2016-07-18 13:22 code666 阅读(239) 评论(0) 推荐(0) 编辑
摘要: //图像腐蚀#include <opencv2/highgui/highgui.hpp>#include <opencv2/imgproc/imgproc.hpp>using namespace cv;int main(){ Mat srcImage = imread("1.jpg"); imsho 阅读全文
posted @ 2016-07-18 10:48 code666 阅读(502) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9