摘要:
1、安装SeleniumIDE插件 2、学会使用SeleniumIDE录制脚本和导出脚本 3、访问https://psych.liebes.top/st使用学号登录系统(账户名为学号,密码为学号后6位),进入系统后可以看到该同学的git地址。 4、编写Selenium Java WebDriver程 阅读全文
摘要:
1. 在Eclipse中安装Junit和Hamcrest两个外部jar文件 (1)在Eclipse窗口中选中project选项卡中的properties选项,选中Java Build Path选项,选择Libraries选项,出现当前项目中包含的jar文件列表; (2)点击右侧Add Externa 阅读全文
摘要:
1) 绘制程序的控制流图: package cn.tju.scs; public class Print { private static int MAXPRIMES=100; public static boolean isDivisable(int a,int b) { if(b%a==0) r 阅读全文
摘要:
public int findLast (int[] x, int y) { //Effects: If x==null throw NullPointerException // else return the index of the last element // in x that equa 阅读全文
摘要:
void update(int i,int l,int r,int c) { if(tr[i].l==l&&tr[i].r==r) { tr[i].f=c; int len=(tr[i].r-tr[i].l+1); tr[i].hash1=fac[0][c][len]; tr[i].hash2=fa 阅读全文