-
高级语言程序设计课程第四次个人作业
班级链接:https://edu.cnblogs.com/campus/fzu/gjyycx 作业链接:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14577 姓名:李志鹏 学号:102500325 运行以下程序给出程序结果 1 2 设计 1 -
高级语言程序设计课程第四次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14577 学号:052301346 姓名:郑积超 作业内容 运行以下 -
高级语言程序设计课程第四次个人作业
这个作业属于https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14577 学号:102500430 姓名:黄华烨 运行以下程序给出程序结果(无需代码, -
博客2
作业1: 要求:在中国气象网(http://www.weather.com.cn)给定城市集的7日天气预报,并保存在数据库。完整代码以及运行结果 心得体会: 学会了使用BeautifulSoup的常用方法。 作业2: –要求:用requests和BeautifulSoup库方法定向爬取股票相关信息, -
高级语言程序设计课程第四次个人作业
这个作业属于:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14577 学号:102500427 姓名:廖伦哲 一、示例 二、问题 用while -
高级语言程序设计课程第四次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14577 学号:102500304 姓名:黄燕婷 一.运行以下程序给 -
高级语言程序设计课程第四次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14577 学号:102500435 姓名:林俊杰 运行以下程序给出程 -
实验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(" -
实验四
实验任务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) = %d\n", sizeof(x) -
实验作业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 -
实验2
实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main() { int cnt; int random_major, random_ -
task2
实验一: 问题一:以时间为随机数,确保每次输出的数据都是随机的。 问题二:随机生成两个班里五个人的学号,且并不重复。 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define -
实验二
实验任务1 源代码 点击查看代码 #include<stdio.h> #include <stdlib.h> #include <time.h> #define N 5 #define N1 80 #define N2 35 int main(){ int cnt; int random_major -
高级语言程序设计第五次作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500308 姓名:郭心悦 一、编写并运行书本第 -
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:<102400102> 姓名:<方韵希> 设计一个ge -
高级语言程序设计第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500327 姓名:李文涛 总结:这次作业强化 -
数据采集与融合技术实践作业二
作业1 – 要求:在中国气象网(http://www.weather.com.cn)给定城市集的7日天气预报,并保存在数据库。 – 输出信息: Gitee文件夹链接 代码: from bs4 import BeautifulSoup from bs4 import UnicodeDammit imp -
102302109_胡贝贝_作业2
作业① (1)实验内容及结果 要求:在中国气象网(http://www.weather.com.cn)给定城市集的7日天气预报,并保存在数据库。 核心代码: class WeatherDB: def __init__(self): self.con = None self.cursor = None -
软件技术基础第二次作业
https://gitee.com/S_sh1y/src -
实验三
实 验 1 1 #include <stdio.h> 2 3 char score_to_grade(int score); // 函数声明 4 5 int main() { 6 int score; 7 char grade; 8 9 while(scanf("%d", &score) != EO