摘要:
代码如下: #include<iostream> #include<algorithm> #include<cstring> using namespace std; int a[200005]; int main() { ios::sync_with_stdio(false); int t,n; 阅读全文
摘要:
继承 继承的例子: class Father { public void f1() { System.out.println("hi"); } } public class Son extends Father { public static void main(String[] a) { Son 阅读全文