-
自我介绍+软工五问
问题 内容 所属班级 班级链接 作业目标 熟练掌握github、git、markdown和博客园的使用 学号 3123001598 自我介绍 兴趣爱好:我对编程,游戏富有兴趣,平常爱跑步,爱看动漫。 学习情况:对C和C++具有一定的掌握。 五个想搞懂的问题 如何正确理解用户需求? 如何高效地维护软件 -
个人项目
这个作业属于哪个课程 https://edu.cnblogs.com/campus/gdgy/SoftwareEngineeringClassof2023 GitHub链接 https://github.com/Rainnnu/Rainnnu.git 这个作业要求在哪里 https://edu.cn -
应急响应靶机训练1 linux wp
背景 前景需要:小王急匆匆地找到小张,小王说"李哥,我dev服务器被黑了",快救救我!! 挑战内容: (1)黑客的IP地址 (2)遗留下的三个flag 上来先看看有没有可疑ip登录,输入last -f /var/log/wtmp,发现ip 提交题解,正确,那么继续寻找flag。 输入ps aux尝试 -
第一次编程作业
github仓库链接:3123004747/cheaker at main · lwy8852/3123004747 Psp表格 psp阶段 预估耗时 实际耗时 · 计划 (Planning) 15 15 · 估计任务时间 (Estimate) 40 55 · 开发 (Development) 20 -
川大网安挑战赛游记
会赢吗 -
Python%格式化输出
% 操作符 >>> name = "lumiere" >>> age = 21 >>> print("My name is %s and I am %d years old." % (name, age)) My name is lumiere and I am 21 years old. 数字 浮 -
实验六
#include<stdio.h> #include<math.h> int main() { double x, ans; scanf("%lf", &x); ans = pow(x, 365); printf("%.2f的365次方:%.2f\n", x, ans); system("pause -
实验七
#include<stdio.h> #include<math.h> int main() { double C, F; while(scanf("%lf", &C)!=EOF) { F = C*9/5 + 32; printf("摄氏度C = %.2f时, 华氏度F = %.2f\n", C, F -
实验四
#include<stdio.h> int main() { double x,y; char c1,c2,c3; int a1,a2,a3; scanf("%d%d%d",&a1,&a2,&a3); printf("a1 = %d, a2 = %d, a3 = %d\n",a1,a2,a3); s -
实验五
#include<stdio.h> int main() { int year; int second = 365*24*60*60; year = 1000000000/second; printf("10亿秒约等于%d年\n",year); system("pause"); return 0; -
实验三
#include<stdio.h> int main() { char ans1,ans2; printf("每次课前认真预习、课后及时复习了没?(输入y或Y表示有,输入n或N表示没有):"); ans1=getchar(); getchar(); printf("\n动手敲代码实践了没?(输入y或 -
实验二
#include<stdio.h> int main() { double a,b,c; scanf("%lf%lf%lf",&a,&b,&c); if(a+b>c || a+c>b || b+c>a) printf("能构成三角形\n"); else printf("不能构成三角形\n"); sy -
实验一
#include <stdio.h> int main() { printf(" O \n"); printf("<H>\n"); printf("I I\n"); printf(" O \n"); printf("<H>\n"); printf("I I\n"); system("pause"); -
第二次作业
这个作业属于哪个课程 课程链接 这个作业要求在哪里 作业要求 这个作业的目标 实现个人项目 github链接 PSP2.1 Personal Software Process Stages 预估耗时(分钟) 实际耗时(分钟) Planning 计划 30 40 · Estimate · 估计这个任务 -
软工第一次作业
软工第一次作业 这个作业属于哪个课程 课程 这个作业要求在哪里 作业要求 这个作业的目标 熟悉博客与markdown用法,对未来软件工程课程学习打下基础 其他参考文献 Markdown教程 目录软工第一次作业1.准备工作1.1上传截图1.2仓库地址2.评估当前的自己2.1个人简历2.2当前值3.展望