-
实验四
Task 1 1 #include<stdio.h> 2 3 #define N 4 4 5 #define M 2 6 7 8 9 void test1(){ 10 11 int x[N]={1,9,8,4}; 12 13 int i; 14 15 16 17 printf("sizeof(x)= -
实验4
任务1 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #define N 4 #define M 2 void test1() { int x[N] = { 1, 9, 8, 4 }; int i; // 输出数组x占用的内存字节数 print -
实验4
任务1 #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)); -
第三章博文
1.关于数学三角形这道题目,从图形来看,它拥有自上而下的的逻辑结构,根据观察,可以列出以下的递归方程式: 假设我们使用一个二维数组c的下半三角来存放整个数学三角形,用i来控制行(从1开始),用j来控制列,那么就有: 1.c[i][j]=c[i][j]+c[i-1][j],j0 这表示当要计算三角形左 -
实验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) prin -
高级语言程序设计课程第五次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14581 学号:102500328 姓名:刘宇桓 设计一个getch -
高级语言程序设计第四次作业
高级程序语言第四次作业 这个作业属于哪个课程 https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里 https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14577 学号 222200424 姓名 赵伟 -
高级语言程序设计课程第四次个人作业
这个作业属于:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业的要求:https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14577 学号:102500420 姓名:连骁晗 作业内容 运行以下程序给出程序结 -
高级语言程序设计课程第四次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14577 学号:102500304 姓名:黄燕婷 一.运行以下程序给 -
高级语言程序设计第四次作业
高级语言程序设计第四次个人作业 作业课程:2025高级语言程序设计(福州大学) 作业要求:高级语言程序设计第四次个人作业 学号:052406103 姓名:叶银珍 作业内容 运行以下程序给出程序结果 用while和do while分别设计程序实现:用公式π/4=1-1/3+1/5-1/7+1/9+.. -
高级语言程序设计课程第四次个人作业
这个作业属于哪个课程:https://edu.cnblogs.com/campus/fzu/gjyycx 这个作业要求在哪里: https://edu.cnblogs.com/campus/fzu/gjyycx/homework/14577 学号:102500413 姓名:陈帅 一.运行以下程序给出 -
Task4
实验任务1 #include #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)); // 输出每个元 -
实验二
任务一 源代码 T.h #pragma once #include <string> // 类T: 声明 class T { // 对象属性、方法 public: T(int x = 0, int y = 0); // 普通构造函数 T(const T& t); // 复制构造函数 T(T&& t) -
数据采集第一次作业
作业1 大学排名爬取实验 (1)要求:用requests和BeautifulSoup库方法定向爬取给定网址(http://www.shanghairanking.cn/rankings/bcur/2020 )的数据,屏幕打印爬取的大学排名信息。 核心代码 import requests from b -
102302147傅乐宜作业1
1.用requests和BeautifulSoup库方法爬取大学排名信息 内容 核心代码: 点击查看代码 import urllib.request from bs4 import BeautifulSoup url = 'http://www.shanghairanking.cn/rankings -
实验3
实验任务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 -
实验三
task.1 点击查看代码 #include <stdio.h> char score_to_grade(int score); int main(){ int score; int grade; while(scanf("%d",&score)!=EOF){ grade = score_to_gr -
实验3
task1.c 1 #include<stdio.h> 2 3 char score_to_grade(int score); 4 5 int main() 6 { 7 int score; 8 char grade; 9 10 while(scanf("%d", &score) != EOF) { -
软件工程第三次作业-结对项目
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScience 这个作业要求在哪里 https://edu.cnblogs.com/campus/gdgy/Class12Grade23ComputerScien -
实验二
实验任务一: 源代码: T.h 1 #pragma once 2 #include<string> 3 class T 4 { 5 public: 6 T(int x = 0, int y = 0); // 普通构造函数 7 T(const T& t); // 复制构造函数 8 T(T&& t);