会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
yitongtianxia666
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
31
32
33
34
35
36
37
38
39
···
44
下一页
2023年1月3日
大数的高精度算法
摘要: 高精度加法: #include <bits/stdc++.h> using namespace std; string add(string &a,string &b){ string c; int t=0; if(a.length()<b.length()) return add(b,a); fo
阅读全文
posted @ 2023-01-03 17:32 一统天下。
阅读(31)
评论(0)
推荐(0)
2022年12月30日
C++中vector的遍历方法
摘要: 假设有这样的一个vector:(注意,这种列表初始化的方法是c++11中新增语法) vector<int> valList = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }; 需要输出这个vector中的每个元素,测试原型如下: void ShowVec(const vector
阅读全文
posted @ 2022-12-30 11:04 一统天下。
阅读(438)
评论(0)
推荐(0)
2022年12月28日
C++中的万能头文件
摘要: #include<bits/stdc++.h>包含了目前c++所包含的所有头文件,这也太香了吧 看一下对比: #include <iostream> #include <cstdio> #include <fstream> #include <algorithm> #include <cmath>
阅读全文
posted @ 2022-12-28 11:05 一统天下。
阅读(2532)
评论(0)
推荐(0)
2022年12月27日
l + r >> 1的意思
摘要: l+r的值右移1位,相当l+r的值除以2取整。Int是将一个数值向下取整为最接近的整数的函数。Int是数据库中常用函数中的取整函数,常用来判别一个数能否被另一个数整除 是比特操作,可以看做是除2,如 15的二进制表示是00001111,15>>1将00001111右移一位,变为00000111,即7
阅读全文
posted @ 2022-12-27 17:32 一统天下。
阅读(553)
评论(0)
推荐(0)
2022年12月26日
试卷审批管理信息系统总结
摘要: 这是我们期末考试的上机考试题,考试的时候功能只实现了勉勉强强的一半。 这次考试真正的意识到时间才是卡住我们完成的关键原因,所以还是要加强代码的熟悉程度。 抛开时间谈代码的完整度和熟练度是不现实的,还是多加练习吧。
阅读全文
posted @ 2022-12-26 17:16 一统天下。
阅读(48)
评论(0)
推荐(0)
试卷审批管理信息系统05
摘要: 系统管理员功能的实现 新添教师、专业负责人、教学副院长的基本信息 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head>
阅读全文
posted @ 2022-12-26 17:10 一统天下。
阅读(71)
评论(0)
推荐(0)
试卷审批管理信息系统04
摘要: 教学副院长功能实现 浏览试卷审批卡 <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/co
阅读全文
posted @ 2022-12-26 17:06 一统天下。
阅读(49)
评论(0)
推荐(0)
试卷审批管理信息系统03
摘要: 专业负责人功能实现 浏览试卷审批卡 <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/co
阅读全文
posted @ 2022-12-26 17:00 一统天下。
阅读(61)
评论(0)
推荐(0)
2022年12月25日
试卷审批管理信息系统02
摘要: 专业教师功能实现 浏览试卷审批卡 <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/cor
阅读全文
posted @ 2022-12-25 23:05 一统天下。
阅读(88)
评论(0)
推荐(2)
试卷审批管理信息系统01
摘要: 学生功能实现 查看个人信息 <%@ page import="Bean.student" %> <%@ page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" %> <!DOCTYPE html>
阅读全文
posted @ 2022-12-25 22:18 一统天下。
阅读(79)
评论(0)
推荐(0)
上一页
1
···
31
32
33
34
35
36
37
38
39
···
44
下一页
公告