【多选题】吴金婷 6.5 24、下列说法中,关于北京卢沟桥的表述正确的是()
C.
桥身两侧石雕护栏有望柱140根,柱头上均雕刻伏卧石狮
E.
1937年7月7日,侵华日军在此制造了卢沟桥事变
【简答题】阅读程序写结果 public class Person { String name; int age; public Person(String name, int age) { this.name = name; this.age = age; } public static void main(String[] args) { Person c = new Person("Peter", 17...
【简答题】阅读程序写结果 public class Test { public static void main(String[] args) { String[] strArr = {"1", "2", "3", "4"}; String result = ""; for (int i = 0; i < strArr.length; i++) { result +=strArr[i]; } System...
【简答题】阅读程序写结果 public class T2_4 { public static void main(String[] args) { int i,j; char c='*'; for(i=0;i<5;i++) { for(j=0;j<=i;j++) System.out.print("* "); System.out.println(); } } }
【简答题】阅读程序写结果 public class TestSwitch { public static void main(String[] args) { char ch = 'a'; switch(ch) { case 'a': case 'A': System.out.println('A'); break; case 'B': System.out.println('B'); break; def...
【多选题】下列关于数据库存储结构的描述,正确的是
A.
数据库并不能直接存储数据,数据是存储在表中的