-
102302105汪晓红数据采集作业2
第二次作业 作业①: 作业代码和图片: 核心代码: 点击查看代码 # 主程序 url = "http://www.weather.com.cn/weather/101010100.shtml" city = "北京" # 初始化数据库 conn = setup_database() try: hea -
实验4
实验任务1 问题一 连续 相同 问题二 连续 相同 16 一行元素的总内存长度即4*N 实验任务2 问题一 x为数组名 形参int x[] 实参x 问题二 输入N个数字,存入一维数组x 将输入的数字去掉最大值与最小值,计算剩余数字的平均数 实验任务3 问题一 x为数组名 形参int x[][N] 实 -
高级语言程序设计课程第五次个人作业
**这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx/ 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500421 姓名:陈浩宇** 1.设计一 -
第二次作业-何玮鑫
作业①: 爬取中国气象网给定城市7日天气预报并存储到数据库 一、核心思路与代码 1. WeatherDB (数据库操作类) 1.1. 方法: openDB 1.1.1 思路: 连接 sqlite3 数据库,创建 weathers 表。关键点是使用 (wCity, wDate) 作为复合主键来防止数据 -
102302116_田自豪_作业2
作业1 要求:在中国气象网(http://www.weather.com.cn)给定城市集的7日天气预报,并保存在数据库。 代码以及结果: 点击查看代码 from bs4 import BeautifulSoup import urllib.request import sqlite3 class -
实验四
task1 #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = { 1, 9, 8, 4 }; int i; // 输出数组x占用的内存字节数 printf("sizeof(x) = %d\n", sizeof(x -
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500335 姓名:任柏宇 1. 2. 3. -
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求在:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 姓名:黄思哲 学号:102500433 1.设计一个getch -
数据采集实践第二次作业—102302131陈宇新
数据采集实践第二次作业—102302131陈宇新 代码路径:https://gitee.com/chenyuxin0328/data-collection/tree/master/作业2 作业1 在中国气象网(http://www.weather.com.cn)给定城市集的7日天气预报,并保存在数据 -
#20232329 2025-2026-1 《网络与系统攻防技术》 实验五实验报告
1.实验内容 (1)从www.besti.edu.cn、baidu.com、sina.com.cn中选择一个DNS域名进行查询,获取信息。 (2)尝试获取BBS、论坛、QQ、MSN中某一好友的IP地址,并查询获取该好友所在的具体地理位置。 (3)使用nmap开源软件对靶机环境进行扫描,回答问题并给出 -
高级语言程序设计课程第五次个人作业
班级链接:https://edu.cnblogs.com/campus/fzu/gjyycx 作业链接:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500325 姓名:李志鹏 一. 八 九 总结;重定向没学会,在看看 -
高级程序语言设计第5次
这个作业属于:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500416 姓名:王浩宇 第一部分 1. 2. 尽力了,老 -
数据采集第二次作业
作业1 相关代码和结果 点击查看代码 from bs4 import BeautifulSoup from bs4 import UnicodeDammit import urllib.request import sqlite3 class WeatherDatabase: def __init_ -
实验4
实验任务1 #include<stdio.h> #define N 4 #define M 2 void test1(){ int x[N]={1,9,8,4}; int i; printf("sizeof(x)=%d\n",sizeof(x)); for(i=0;i<N;++i) printf(" -
102302112王光诚作业2
作业①: 要求:在中国气象网(http://www.weather.com.cn)给定城市集的7日天气预报,并保存在数据库。 运行结果: 点击查看代码 import sqlite3 import requests from bs4 import BeautifulSoup from datetime -
数据采集与融合技术作业2
数据采集与融合技术作业2各任务核心代码片段、实现思路与心得体会任务一:中国气象网7日天气预报爬取与存储要求:在中国气象网(http://www.weather.com.cn)给定城市集的7日天气预报,并保存在数据库。核心代码片段(抓取与解析核心)def crawl_weather(city_name -
实验作业4
实验1 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 void test1() { 5 int x[N] = { 1,9,8,4 }; 6 int i; 7 8 printf("sizeof(x)=%d\n", sizeof(x)); 9 fo -
实验4
实验任务1 源代码: 1 #include <stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1() { 6 int x[N] = {1, 9, 8, 4}; 7 int i; 8 9 // 输出数组x占用的内存字节数 10 printf("siz -
实验4
任务1 1 #include<stdio.h> 2 #define N 4 3 #define M 2 4 5 void test1(){ 6 int x[N]={1,9,8,4}; 7 int i; 8 9 printf("sizeof(x)=%\n",sizeof(x)); 10 for (i= -
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500419 姓名:吴鸿益 1. 设计一个ge