锘??xml version="1.0" encoding="utf-8" standalone="yes"?>女子免费在线观看视频www,亚洲国产导航,成人av在线一区二区三区http://www.aygfsteel.com/allen/瀛︿範Java浠庨浂寮濮?瑙佽瘉2006-Java涔嬭礬zh-cnTue, 17 Jun 2025 18:33:15 GMTTue, 17 Jun 2025 18:33:15 GMT60- import myjava.PlotOtau鍜宨mport myjava.*鐨勫尯鍒紵http://www.aygfsteel.com/allen/archive/2006/01/13/27981.htmlAllenAllenFri, 13 Jan 2006 15:10:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/13/27981.htmlhttp://www.aygfsteel.com/allen/comments/27981.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/13/27981.html#Feedback2http://www.aygfsteel.com/allen/comments/commentRss/27981.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27981.htmlimport myjava.*錛?BR>import myjava.PlotOtau錛?BR>鐪熶笉鐭ラ亾鎵?/SPAN>*鍙蜂負浠涔堟壘涓嶅埌璺緞錛熷嵆浣縫ackage myjava閲屽氨涓涓狿lotOtau.class銆?/SPAN>

]]> - ClassDemohttp://www.aygfsteel.com/allen/archive/2006/01/09/27310.htmlAllenAllenMon, 09 Jan 2006 12:50:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/09/27310.htmlhttp://www.aygfsteel.com/allen/comments/27310.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/09/27310.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27310.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27310.html 1
public class ClassDemo
2

{
3
public ClassDemo()
{}
4
5
public static void main(String[] args)
6
{
7
ClassDemo test=new ClassDemo();
8
System.out.println("The class of test is:"+test.getClass().getName());
9
try
{
10
Class c=Class.forName("java.lang.Object");
11
System.out.println(c.getPackage()+"\t");
12
System.out.println(c);
13
java.lang.reflect.Method[] m=c.getMethods();
14
System.out.println("The element in String[] is:"+String[].class.getComponentType());
15
System.out.println((new int[3][4][5][6]).getClass().getName());
16
System.out.println("The method defined in Object class:");
17
for(int i=0; i<m.length; i++)
18
{
19
System.out.println(m[i]);
20
}
21
}
22
catch(ClassNotFoundException e)
23
{
24
e.printStackTrace();
25
}
26
}
27
}
]]> - ComplexNumberhttp://www.aygfsteel.com/allen/archive/2006/01/09/27307.htmlAllenAllenMon, 09 Jan 2006 12:22:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/09/27307.htmlhttp://www.aygfsteel.com/allen/comments/27307.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/09/27307.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27307.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27307.html
1
public class ComplexNumber
2

{
3
private double x,y;
4
5
public ComplexNumber(double real,double imaginary)
6
{
7
this.x=real;
8
this.y=imaginary;
9
}
10
11
public double real()
12
{
13
return x;
14
}
15
16
public double imaginary()
17
{
18
return y;
19
}
20
21
public double magnitude()
22
{
23
return Math.sqrt(x*x+y*y);
24
}
25
26
public String toString()
27
{
28
return "{"+x+","+y+"}";
29
}
30
31
public static ComplexNumber add(ComplexNumber a,ComplexNumber b)
32
{
33
return new ComplexNumber(a.x+b.x,a.y+b.y);
34
}
35
36
public ComplexNumber add(ComplexNumber a)
37
{
38
return new ComplexNumber(this.x+a.x,this.y+a.y);
39
}
40
41
public static ComplexNumber multiply(ComplexNumber a,ComplexNumber b)
42
{
43
return new ComplexNumber(a.x*b.x-a.y*b.y,a.x*b.y+a.y*b.x);
44
}
45
46
public ComplexNumber multiply(ComplexNumber a)
47
{
48
return new ComplexNumber(x*a.x-y*a.y,x*a.y+y*a.x);
49
}
50
} 
]]>- ArrayPrinthttp://www.aygfsteel.com/allen/archive/2006/01/09/27289.htmlAllenAllenMon, 09 Jan 2006 10:04:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/09/27289.htmlhttp://www.aygfsteel.com/allen/comments/27289.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/09/27289.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27289.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27289.html
1
import java.io.*;
2
public class ArrayPrint
3

{
4
private int N;
5
private int[][] intarray;
6
ArrayPrint()
7
{
8
N=5;
9
intarray=new int[N][N];
10
}
11
ArrayPrint(int n)
12
{
13
N=n;
14
intarray=new int[N][N];
15
}
16
public void Print()
17
{
18
int i=0,j=0;
19
int i0=0,j0=0;
20
int count=1;
21
int Num=N-1;
22
while(Num>0)
23
{
24
for(i=i0,j=j0;j<Num;j++,count++)
25
{
26
intarray[i][j]=count;
27
}
28
for(i=i0;i<Num;i++,count++)
29
{
30
intarray[i][j]=count;
31
}
32
for(j=Num;j>j0;j--,count++)
33
{
34
intarray[i][j]=count;
35
}
36
for(i=Num;i>i0;i--,count++)
37
{
38
intarray[i][j]=count;
39
}
40
i0++;
41
j0++;
42
Num--;
43
}
44
if(N%2!=0)
45
{
46
intarray[N/2][N/2]=count;
47
}
48
for(i=0;i<N;i++)
49
{
50
for(j=0;j<N;j++)
51
{
52
String ar="0";
53
if(intarray[i][j]/10<1)
54
{
55
ar=" "+intarray[i][j];
56
}
57
else if(intarray[i][j]/100<1 && intarray[i][j]/10>=1)
58
{
59
ar=" "+intarray[i][j];
60
}
61
System.out.print(ar+" ");
62
}
63
System.out.println();
64
}
65
}
66
public static void main(String[] args) throws IOException
67
{
68
int order=0;
69
System.out.println("Please input the order of the square:(<10:)");
70
order=System.in.read();
71
order=order-'0';
72
ArrayPrint arr=new ArrayPrint(order);
73
arr.Print();
74
}
75
} 
]]> - StringBufferDemohttp://www.aygfsteel.com/allen/archive/2006/01/09/27247.htmlAllenAllenMon, 09 Jan 2006 05:27:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/09/27247.htmlhttp://www.aygfsteel.com/allen/comments/27247.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/09/27247.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27247.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27247.html
1
public class StringBufferDemo
2

{
3
public static void main(String[] args)
4
{
5
StringBuffer sb=new StringBuffer("Java");
6
double d=1.4;
7
sb.append(d).append("have").append(new String(" a lot of new features"));
8
System.out.println(sb);
9
sb.insert(4,"SDK");
10
System.out.println(sb);
11
sb.delete(4,10);
12
System.out.println(sb);
13
System.out.println(sb.reverse());
14
}
15
} 
]]> - StringDemohttp://www.aygfsteel.com/allen/archive/2006/01/09/27242.htmlAllenAllenMon, 09 Jan 2006 04:57:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/09/27242.htmlhttp://www.aygfsteel.com/allen/comments/27242.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/09/27242.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27242.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27242.html
1
public class StringDemo
2

{
3
public static void main(String[] args)
4
{
5
String myName="G. Leeman";
6
int length="娑傞潤闈?/SPAN>".length();
7
System.out.println("闀垮害1錛?/SPAN>"+myName.length());
8
System.out.println("闀垮害2錛?/SPAN>"+length);
9
String name1="programming in java";
10
String name2="Programming in Java";
11
System.out.println("姣旇緝1錛?/SPAN>"+name1.equals(name2));
12
System.out.println("姣旇緝2錛?/SPAN>"+name2.equalsIgnoreCase(name2));
13
System.out.println("姣旇緝3錛?/SPAN>"+name2.compareTo("Progam"));
14
System.out.println("瀛楃1錛?/SPAN>"+name1.charAt(4));
15
System.out.println("瀛楃2錛?/SPAN>"+name1.indexOf('a'));
16
System.out.println("瀛楃3錛?/SPAN>"+name2.lastIndexOf('a'));
17
String subname="in";
18
System.out.println("瀛愪覆1錛?/SPAN>"+name1.substring(3,10));
19
System.out.println("瀛愪覆2錛?/SPAN>"+"abc".concat("123"));
20
System.out.println("瀛愪覆3錛?/SPAN>"+name2.startsWith("Pro"));
21
System.out.println("瀛愪覆4錛?/SPAN>"+name2.endsWith("in Java"));
22
System.out.println("瀛愪覆5錛?/SPAN>"+name1.indexOf(subname));
23
System.out.println("瀛愪覆6錛?/SPAN>"+name1.lastIndexOf(subname));
24
System.out.println("灝忓啓錛?/SPAN>"+name2.toLowerCase());
25
System.out.println("澶у啓錛?/SPAN>"+name2.toUpperCase());
26
System.out.println("鏇挎崲錛?/SPAN>"+name1.replace('a','A'));
27
}
28
} 
]]> - 縐?/title>http://www.aygfsteel.com/allen/archive/2006/01/08/27092.htmlAllenAllenSat, 07 Jan 2006 16:22:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/08/27092.htmlhttp://www.aygfsteel.com/allen/comments/27092.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/08/27092.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27092.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27092.html
浣滆咃細嫻峰瓙
鐢ㄦ垜浠í闄堜簬鍦頒笂鐨勯楠?BR>鍦ㄦ矙婊╀笂鍐欎笅錛氶潚鏄ャ傜劧鍚庤儗璧瘋“鑰佺殑鐖朵翰
鏃舵棩婕暱 鏂瑰悜涓柇
鍔ㄧ墿鑸殑鎭愭儳鍏呭鎴戜滑鐨勮瘲姝?BR>
璋佺殑澹伴煶鑳芥姷杈劇涔嬪瓙澶?nbsp;闀夸箙鍠у搷
鎺╃洊鎴戜滑妯檲浜庡湴涓婄殑楠擱鈥斺?BR>縐嬪凡鏉ヤ復
娌℃湁涓濇鐨勫鎭曞拰娓╂儏錛氱宸叉潵涓?BR>

]]> - 濂沖瀛?/title>http://www.aygfsteel.com/allen/archive/2006/01/08/27090.htmlAllenAllenSat, 07 Jan 2006 16:20:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/08/27090.htmlhttp://www.aygfsteel.com/allen/comments/27090.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/08/27090.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27090.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27090.html
浣滆咃細嫻峰瓙
濂硅蛋鏉?BR>鏂柇緇畫璧版潵
媧佸噣鐨勮剼
娌炬弧娓呭噳鐨勯湶姘?BR>
濂規湁浜涘咖閮?BR>鏈涙湜鐢ㄦ償鑽夌瓚璧風殑鎴垮眿
鏈涙湜鐖朵翰
濂圭敤鍙屾墜鍒嗗紑榛戝彂
涓鏀噹妗冭姳鏂滄彃鐫榛橀粯鏃犺
鍙︿竴鏀佺粰浜嗚皝
鍗翠粠鏉ユ病浜洪棶璧?BR>
鏄ュぉ鏄
縐嬪ぉ鏄湀浜?BR>鍦ㄦ垜鎰熻鍒版椂
濂瑰凡鍘諱簡鍙︿竴涓湴鏂?BR>閭i噷闆ㄥ悗鐨勭絎嗚薄涓鏉¤摑鑹茬殑
灝忔邯

]]> - 鏃ュ厜http://www.aygfsteel.com/allen/archive/2006/01/08/27089.htmlAllenAllenSat, 07 Jan 2006 16:20:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/08/27089.htmlhttp://www.aygfsteel.com/allen/comments/27089.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/08/27089.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27089.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27089.html
浣滆咃細嫻峰瓙
姊ㄨ姳
鍦ㄥ湡澧欎笂婊戝姩
鐗涢搸澹板0
澶у┒鎷夎繃涓や綅灝忓爞寮?BR>绔欏湪鎴戦潰鍓?BR>璞′袱鎴粦鐐?BR>
鏃ュ厜鍏跺疄寰堝己
涓縐嶄竾鐗╃敓闀跨殑闉瓙鍜岃錛?nbsp;

]]> - 澶?/title>http://www.aygfsteel.com/allen/archive/2006/01/08/27088.htmlAllenAllenSat, 07 Jan 2006 16:19:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/08/27088.htmlhttp://www.aygfsteel.com/allen/comments/27088.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/08/27088.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27088.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27088.html浣滆咃細嫻峰瓙
澶滈粦婕嗘紗 鏈夋按鐨勬潙搴?BR>楦熷彨涓嶅仠 嫻呮矙涓嬭嵏鑽?BR>閭f灉瀹炲湪鍦頒笅闀垮ぇ璞″搼瀛愬彨闂?BR>楸肩兢鎮勬倓娼滆濡傚悓鍦ㄤ竴涓仛姊﹀皯濂蟲涓?BR>閭f椂鍒繪湁浣嶆瘝浜叉槞鑺變竴鐜?BR>楦熷彨涓嶅畾 浠夸經鏉戝瓙濡備竴棰楀皬楦熺殑鍢村攪
楦熷彨涓嶅畾鑰屽皬楦熸病鏈夊槾鍞?BR>浣犳槸澶滄櫄鐨勪竴閮ㄥ垎 璋佹槸榛戝鐨勬瘝浜?BR>閭e鏅氬湪闂ㄥ墠闀垮ぇ璞″搼瀛愬彨闂?BR>楦熷彨涓嶅畾璞″皬楦熷鐚粰榛戝鐨勫槾鍞?BR>
鍦ㄩ棬澶栭粦澶滅殑鍢村攪
鍐欎笅浜嗕綘鐨勫鍚?nbsp;

]]> - 璁棶http://www.aygfsteel.com/allen/archive/2006/01/08/27085.htmlAllenAllenSat, 07 Jan 2006 16:17:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/08/27085.htmlhttp://www.aygfsteel.com/allen/comments/27085.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/08/27085.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27085.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27085.html
浣滆咃細嫻峰瓙
鍦ㄩ潚楹﹀湴涓婅窇鐫
闆拰澶槼鐨勫厜鑺?BR>
璇椾漢 浣犳棤鍔涘伩榪?BR>楹﹀湴鍜屽厜鑺掔殑鎯呬箟
涓縐嶆効鏈?BR>涓縐嶅杽鑹?BR>浣犳棤鍔涘伩榪?BR>
浣犳棤鍔涘伩榪?BR>涓棰楁斁灝勫厜鑺掔殑鏄熻景
鍦ㄤ綘澶撮《瀵傚癁鐕冪儳

]]> - 絳斿http://www.aygfsteel.com/allen/archive/2006/01/08/27084.htmlAllenAllenSat, 07 Jan 2006 16:16:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/08/27084.htmlhttp://www.aygfsteel.com/allen/comments/27084.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/08/27084.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27084.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27084.html
浣滆咃細嫻峰瓙
楹﹀湴
鍒漢鐪嬭浣?BR>瑙夊緱浣犳俯鏆?nbsp;緹庝附
鎴戝垯绔欏湪浣犵棝鑻﹁川闂殑涓績
琚綘鐏間激
鎴戠珯鍦ㄥお闃?nbsp;鐥涜嫤鐨勮姃涓?BR>
楹﹀湴
紲炵鐨勮川闂呭晩
褰撴垜鐥涜嫤鍦扮珯鍦ㄤ綘鐨勯潰鍓?BR>浣犱笉鑳借鎴戜竴鏃犳墍鏈?BR>浣犱笉鑳借鎴戜袱鎵嬬┖絀?/SPAN>

]]> - 闆?/title>http://www.aygfsteel.com/allen/archive/2006/01/08/27080.htmlAllenAllenSat, 07 Jan 2006 16:12:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/08/27080.htmlhttp://www.aygfsteel.com/allen/comments/27080.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/08/27080.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27080.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27080.html
浣滆咃細嫻峰瓙
鎵撲竴鏀伀鎶婅蛋鍒拌埞澶栧幓鐪嬪北澶磋闆ㄦ穻婀跨殑楹﹀湴
鍙堝急鍙堝皬鐨勯害瀛?/SPAN>!
鐒跺悗鍦ㄧ鍍忓墠鎶婄伀鎶婄唲鐏?BR>鎴戜滑娌夐粯鍦伴潬鍦ㄤ竴璧?BR>浣犳槸涓涓粰濂? 浣忓湪搴勫洯鐨勬繁澶?BR>
鏈堜寒 浣犲瘨鍐風殑鐏劙絀挎埓鐨勮薄涓鏈甸矞鑺?BR>鍦ㄥ崡鏂圭殑澶╃┖涓婃父娉?BR>鍦ㄥ閲屾父娉?nbsp;瓚婅繃鎴戠殑澶撮《
楂樺湴鐨勫皬鏉戝簞鍙堝皬鍙堣傳絀?BR>璞′竴棰楅害瀛?BR>璞′竴鎶婁紴
浼炰腑瑁鎬綋灝戝コ娌夐粯涓嶈
璐┓瀛ょ嫭鐨勫皯濂?nbsp;璞″コ鐜嬩竴鏍?nbsp;浣忓湪涓鎶婁紴涓?BR>闃沖厜鍜岄洦姘村彧鑳界粰浣犲皹鍦熷拰娉ユ碁
浣犲湪浼炰腑 韜插紑涓鍒?BR>鎷掔粷娉按鍜屽洖蹇?nbsp;

]]> - 鏈堝厜http://www.aygfsteel.com/allen/archive/2006/01/08/27079.htmlAllenAllenSat, 07 Jan 2006 16:12:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/08/27079.htmlhttp://www.aygfsteel.com/allen/comments/27079.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/08/27079.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27079.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27079.html
浣滆咃細嫻峰瓙
浠婂緹庝附鐨勬湀鍏?nbsp;浣犵湅澶氬ソ!
鐓х潃鏈堝厜
楗按鍜岀洂鐨勯┈
鍜屽0闊?BR>
浠婂緹庝附鐨勬湀鍏?nbsp;浣犵湅澶氱編涓?BR>緹婄兢涓?nbsp;鐢熷懡鍜屾浜″畞闈欑殑澹伴煶
鎴戝湪鍊懼惉!
榪欐槸涓鏀ぇ鍦板拰姘寸殑姝岃埃, 鏈堝厜!
涓嶈璇?nbsp;浣犳槸鐏腑涔嬬伅, 鏈堝厜!
涓嶈璇村績涓湁涓涓湴鏂?BR>閭f槸鎴戜竴鐩翠笉鏁㈡ⅵ瑙佺殑鍦版柟
涓嶈闂?nbsp;妗冨瓙瀵規鑺辯殑鐝嶈棌
涓嶈闂?nbsp;鎵撻害澶у湴 澶勫コ 妗傝姳鍜屾潙闀?BR>浠婂緹庝附鐨勬湀鍏?nbsp;浣犵湅澶氬ソ!
涓嶈璇存浜$殑鐑涘厜浣曢』鍊懼?BR>鐢熷懡渚濈劧鐢熼暱鍦ㄥ咖鎰佺殑娌蟲按涓?BR>鏈堝厜鐓х潃鏈堝厜 鏈堝厜鏅収
浠婂緹庝附鐨勬湀鍏夊悎鍦ㄤ竴璧鋒祦娣?nbsp;

]]> - 鏄ュぉ, 鍗佷釜嫻峰瓙http://www.aygfsteel.com/allen/archive/2006/01/08/27078.htmlAllenAllenSat, 07 Jan 2006 16:08:00 GMThttp://www.aygfsteel.com/allen/archive/2006/01/08/27078.htmlhttp://www.aygfsteel.com/allen/comments/27078.htmlhttp://www.aygfsteel.com/allen/archive/2006/01/08/27078.html#Feedback0http://www.aygfsteel.com/allen/comments/commentRss/27078.htmlhttp://www.aygfsteel.com/allen/services/trackbacks/27078.html
浣滆咃細嫻峰瓙
閲庤洰鑰屾偛浼ょ殑嫻峰瓙錛?BR>鐫″湪鍐板喎鑰岀嫮闀跨殑閾佽建涓婏紱
鍠滅埍鍐棩瀵傚癁鏉戝簞鐨勪綘錛?BR>鍊懼績姝諱骸銆?BR>
鍝常鍜屾蹇碉紝鏃╁凡浣滃彜錛?BR>鍚唱鐨勮瘲紼匡紝鍒板椋炶垶錛?BR>婊磋鐨勮瘲鍙ワ紝寮ユ極鍦ㄦ潙钀姐?BR>閲庤洰銆佹偛浼ょ殑嫻峰瓙錛屼笉浼氬媧伙紵
嫻峰瓙鍟婏紒鐜夌背鍜屽皬楹﹀凡鏀惰幏瀹屾瘯錛?BR>姘翠腑鐨勫皯濂充篃鎶婁綘鐨勭櫧楠ㄦ帺鍩嬶紱
鍐滃か鎶婄瀛愬啀嬈℃磼榪涘湡閲岋紝
闀垮嚭鐨勮敩鑿滃拰綺絳変綘閲囨憳

鏄ュぉ錛屽彟涓涓搗瀛愪細澶嶆椿錛岄噹铔?BR>浣嗕笉鎮蹭激 
]]>
主站蜘蛛池模板:
绥江县|
新化县|
漠河县|
宁乡县|
弋阳县|
手机|
旺苍县|
昭平县|
渝北区|
塔城市|
湘潭县|
四川省|
海原县|
成安县|
深州市|
屏南县|
平顶山市|
正蓝旗|
清丰县|
岳阳市|
德兴市|
深水埗区|
内丘县|
石渠县|
延津县|
南召县|
阿城市|
辽阳县|
阜康市|
平南县|
辽宁省|
杭州市|
巴中市|
鄂伦春自治旗|
中超|
逊克县|
伊川县|
舟曲县|
景宁|
曲周县|
辽阳县|