上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 187 下一页
摘要: //手工输入数据保存为mb1.dta input id ks2020 ks2021 ks2022 ks2023 1 1 2 3 4 2 4 1 3 2 3 7 0 3 0 4 10 -1 3 -2 5 13 -2 3 -4 6 16 -3 3 -6 7 19 -4 3 -8 8 22 -5 3 -1 阅读全文
posted @ 2023-03-23 14:20 myrj 阅读(525) 评论(0) 推荐(0)
摘要: Bloop 的主要功能如下:- 基于 GPT-4 的会话搜索;- 快速的正则表达式搜索;- 同步本地和 GitHub 仓库;- 支持多种不同查询方式的过滤器;- 使用符号搜索查找函数、变量或特征- 拥有 10 多种编程流行语言的精确代码导航。GitHub:github.com/BloopAI/blo 阅读全文
posted @ 2023-03-23 14:05 myrj 阅读(401) 评论(0) 推荐(0)
摘要: #!/usr/bin/env python # coding: utf-8 # @author: sSWans # @file: main.py # @time: 2018/1/11 15:54 import os import random from _datetime import dateti 阅读全文
posted @ 2023-03-23 12:37 myrj 阅读(52) 评论(0) 推荐(0)
摘要: import cv2 import numpy as np def OnMouseAction(event,x,y,flags,param): # 鼠标触发记录点位 global coor_x, coor_y, coor if event == cv2.EVENT_LBUTTONDOWN: prin 阅读全文
posted @ 2023-03-23 10:20 myrj 阅读(79) 评论(0) 推荐(0)
摘要: import cv2 #取得指定图像或视频鼠标位置的颜色特征 from pylab import * from PIL import Image import sys import copy user_input = int(input("如果标视频,请输入1 ;如果标图片,请输入2: ")) if 阅读全文
posted @ 2023-03-23 10:07 myrj 阅读(137) 评论(0) 推荐(0)
摘要: #!/usr/bin/env python # coding: utf-8 # @author: sSWans # @file: main.py # @time: 2018/1/11 15:54 import os import random from _datetime import dateti 阅读全文
posted @ 2023-03-22 13:37 myrj 阅读(74) 评论(0) 推荐(0)
摘要: #!/usr/bin/python3.6 # -*- coding: utf-8 -*- ''' @ Copyright (C) 2019 @ @ env stetup:pip3 install opencv-python @ @ 免费知识星球:[一番码客-积累交流](https://t.zsxq. 阅读全文
posted @ 2023-03-22 12:57 myrj 阅读(176) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <string.h> void reverse(char *str) { int len = strlen(str),i; char temp; for (i = 0; i < len / 2; i++) { temp = str[i]; st 阅读全文
posted @ 2023-03-22 09:32 myrj 阅读(50) 评论(0) 推荐(0)
摘要: #include<stdio.h> // 求e=1/1!+1/2!+1/3!+....+1/n! main() { double e=1,a,s=1; int i; for(i=1;i<=20;i++) { s*=i; a=1/s; e+=a; } printf("%f",e); } 阅读全文
posted @ 2023-03-22 08:56 myrj 阅读(161) 评论(0) 推荐(0)
摘要: #include <stdio.h> //从键盘输入一个字符串,将字符串中出现的所有大写字母循环右移5位 【1】 main() { char s[30]; int i=0,n; 【1】; n=strlen(s); while(【1】) { if(【1】) s[i]=s[i]+5; if(【1】) 【 阅读全文
posted @ 2023-03-22 08:49 myrj 阅读(118) 评论(0) 推荐(0)
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 187 下一页