摘要:
选择元素 通过class属性选择元素 If there is a lot of class value,they can't be regard as an enirety and each word represent a depent value. WebDriver can use to lo 阅读全文
摘要:
一、1000的阶乘问题 思路:用一位数组表示一个数(1000的阶乘结果2560位),写一个一位数组的加法和乘法 乘法可以看成乘数的每一位所代表的数与因数相乘,将结果相加即可得到结果。 import java.util.Scanner; public class Main{ public static 阅读全文