摘要: 今日收获 学习巩固了软考内容; 成功分组,并确定好主题; 完成了人机交互的部分大作业; 明天预计 趁着最后两天继续复习软考知识; 希望友友被偷的手机能找回来~~ 阅读全文
posted @ 2023-11-02 22:46 yesyes1 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 问题描述 我在使用SpringBoot进行页面跳转时,发现其只是返回相应的字符串,并不会出现页面跳转: 问题解决 不要在Controller层加@Responsebody注解,不然就只会默认是返回字符串,而不会返回页面; 阅读全文
posted @ 2023-11-02 20:11 yesyes1 阅读(422) 评论(0) 推荐(0) 编辑
摘要: 1、运用Dreamweaver软件 先定义好一个网页: 然后鼠标使用光标选择flash动画放置的位置: 然后选择菜单栏中的插入-->HTML-->Flash SWF文件: 选择自己的SWF文件: 然后就导入到网页成功啦~~~ 阅读全文
posted @ 2023-11-02 15:27 yesyes1 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 浅克隆 #include<iostream> #include<algorithm> using namespace std; //计算类 class Compute { public: int* p; int len;//向量长度 Compute(int len); Compute(const C 阅读全文
posted @ 2023-11-02 12:25 yesyes1 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 具体代码 //Main.java package org.example.test006; public class Main { public static void main(String[] args) { System.out.println("分配学号:"); StudentNumber 阅读全文
posted @ 2023-11-02 08:48 yesyes1 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 代码实现0/1背包 #include<stdio.h> #define N 4 #define W 5 int max(int a, int b) { return a > b ? a : b; } int main() { int v[] = { 0,2,4,5,6 }; int w[] = { 阅读全文
posted @ 2023-11-02 01:00 yesyes1 阅读(9) 评论(0) 推荐(0) 编辑