proginn2122153786
1天前在线
全职 · 300/日  ·  6525/月
工作时间: 周末0:00-23:30工作地点: 远程
服务企业: 0家累计提交: 0工时
联系方式:
********
********
********
聊一聊

使用APP扫码聊一聊

个人介绍

晋中信息学院大三在读学生
本科学历
计算机科学与技术专业
熟练掌握Java,C语言等编程语言
熟练掌握WPS 等应用软件
计算机网络安全管理员中级证书
WPS中级证书
中共党员
乐于接受新挑战
在校无挂科
爱好英语,通过4级考试
为人善良,开朗大方,尊重他人
擅长学习新知识,对工作有高度责任感
喜欢音乐,喜欢打球,喜欢健身
能与时俱进,提高自己文化素养

工作经历

  • 2025-01-01 -至今朔州

    所在学校:   朔州市第六小学   时间范围:2023-2024   公司性质:事业单位   所属行业:教育   担任职位:体育老师

教育经历

  • 2024-09-01 - 2025-01-01山西农业大学信息学院计算机科学与技术本科

    在校无挂科,参加学院评优评奖 获得奖学金

技能

0
1
2
3
4
5
0
1
2
3
4
5
作品

#include #define MAX 10 typedef int VexType; typedef VexType jz[MAX][MAX]; jz wxt={0}; jz wxw={0}; jz yxt={0}; jz yxw={0}; int n1=0,e1=0; int n2=0,e2=0; int n3=0,e3=0; int n4=0,e4=0; void output(jz G,int n) { int i,j; for(i=1;i

0
2025-03-01 21:55

#include #define MAX 10 typedef int VexType; typedef VexType jz[MAX][MAX]; jz wxt={0}; jz wxw={0}; jz yxt={0}; jz yxw={0}; int n1=0,e1=0; int n2=0,e2=0; int n3=0,e3=0; int n4=0,e4=0; void output(jz G,int n) { int i,j; for(i=1;i

0
2025-03-01 21:55

import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; import java.io.IOException; public class LotteryResultCrawler { public static void main(String[] args) { String url = ""; try { Document doc = Jsoup.connect(url) .userAgent("Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36") .timeout(10000) .get(); Element resultTable = doc.selectFirst(".kaijiang table"); if (resultTable != null) { // 3. 遍历表格行 Elements rows = resultTable.select("tr"); for (Element row : rows) { // 跳过表头 if (row.select("th").size() > 0) continue; // 4 Elements cols = row.select("td"); if (cols.size() >= 6) { String issueNo = cols.get(0).text(); // 期号 String matchInfo = cols.get(1).text(); // 赛事信息 String fullTime = cols.get(2).text(); // 比赛时间 String halfResult = cols.get(3).text(); // 半场结果 String fullResult = cols.get(4).text(); // 全场结果 String result = cols.get(5).text(); // 胜平负结果 // 5. 输出结果 System.out.println("期号: " + issueNo); System.out.println("赛事: " + matchInfo); System.out.println("比赛时间: " + fullTime); System.out.println("半场结果: " + halfResult); System.out.println("全场结果: " + fullResult); System.out.println("" + result); System.out.println("--------------------------"); } } } else { System.out.println(""); } } catch (IOException e) { System.err.println("" + e.getMessage()); } } }

0
2025-03-01 21:44
更新于: 2天前 浏览: 17