#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:
其他好文 时间:
2021-06-11 18:23:03
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:
其他好文 时间:
2021-06-11 18:22:43
阅读次数:
0
使用vuex,首先得了解它是用来干什么的? >实现数据共享的。 第一步:在项目中引入vuex ①在项目目录下,使用npm引入vuex:npm install vuex --save ②在项目的src中创建一个以store命名的文件夹,在store下创建一个以index.js命名的文件 ③在index ...
分类:
其他好文 时间:
2021-06-11 18:22:24
阅读次数:
0
1.table布局 <div class="box"> <p>前端开发真不错,就是智商跟不上</p> <p>前端开发真不错,就是智商跟不上</p> </div> .box { width: 300px; height: 200px; border: 1px solid #000; display: ...
分类:
Web程序 时间:
2021-06-11 18:21:11
阅读次数:
0
1. #include<stdio.h>#include<stdlib.h>#include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20 ...
分类:
其他好文 时间:
2021-06-11 18:20:49
阅读次数:
0
一、添加maven依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 二、applicati ...
分类:
编程语言 时间:
2021-06-11 18:20:30
阅读次数:
0
C语言 int maxProfit(int* prices, int pricesSize) { int dp[pricesSize][2]; dp[0][0] = 0, dp[0][1] = -prices[0]; for (int i = 1; i < pricesSize; ++i) { dp ...
分类:
编程语言 时间:
2021-06-11 18:18:14
阅读次数:
0
实验任务一 // P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 10 // ...
分类:
其他好文 时间:
2021-06-11 18:17:22
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 4 typedef struct student { int id; /*学生学号 */ char name[20]; /*学生姓名 */ char subject[2 ...
分类:
其他好文 时间:
2021-06-11 18:15:08
阅读次数:
0
冲刺任务:完成app首页、第二页面和特殊情况的页面布局 activity_main.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res ...
分类:
移动开发 时间:
2021-06-11 18:12:07
阅读次数:
0