摘要:
#include <bits/stdc++.h> using namespace std; const int N=1e3+10; char s[N]; bool flag=0; char p[N]; int ptt=0; int num[N],ntt=0; char Op[N]; int optt 阅读全文
摘要:
首先需要导包 import java.sql.* 数据库的操作 在写JDBC时需要抛出相应的异常或在用try方法抓住异常 加载驱动 Class.forName("com.mysql.jdbc.Driver"); //5.0争取旧版本 Class.forName("com.mysql.cj.jdbc. 阅读全文
摘要:
题目链接:Problem - B - Codeforces 输入 71727741010501100639999652345618789987887987998798 输出 1210121015106 题目大意就是给出T个用例给出一个长度为n,只包含'0'~'9'的字符串,在它所有的子串中,输出所有 阅读全文
摘要:
产生随机数的类和方法 Random random=new Random(); //Random(long seed):使用单个 long 类型的参数创建一个新的随机数生成器。 random.nextBoolean(); random.nextDouble(); //返回0~1.0之间的浮点数 ran 阅读全文
摘要:
Cmd控制台 mysql -uroot -p -- 连接数据库 flush privileges; -- 刷新权限 show databates; -- 查看所有的数据库 use 数据库名; -- 切换数据库 show tables; -- 查看数据库中所有的表 describe; 表名 -- 查看 阅读全文
摘要:
考试题目要求实现一个校园社团管理系统 整体框架 sql操作工具类 package tool; import java.sql.*; public class Mysqltool { private static Connection con; private static PreparedState 阅读全文
摘要:
A. Bestie time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output You are given an array aa consi 阅读全文
摘要:
D. Factorial Divisibility time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output You are given 阅读全文
摘要:
C2. Make Nonzero Sum (hard version) time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output This 阅读全文
摘要:
C1. Make Nonzero Sum (easy version) time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output This 阅读全文