Java教程 - Java For语句Java中, for循环语句, 给出了一种, 极为强大的, 书写循环语句的, 方式。for循环的最简单形式如下所示for(initialization; condition; iteration) statement;Java for循环语句有三个部分:这里存在一小段能够将所讲 for 循环呈现出来的特定程序, 此其中, 有着一个负责循环控制的变量 i , 它被赋予了零这样的初始值, 在每次循环迭代初至之时, 这里会进行条件测试 x 10 , 要是该测试得出是真这样的一个结果后, 就会执行 ()语句, 之后还会执行循环迭代的相关部分, 这种过程会按部就班地持续推进, 一直到条件测试得出 false 这样的结果为止。public class Main { public static void main(String args[]) { int i; for (i 0; i 10; i i 1) System.out.println(This is i: i); } }此程序生成以下输出:例子下面的代码再次从上面写入代码逻辑但是循环反转:public class Main { public static void main(String args[]) { for (int n 10; n 0; n--) System.out.println(n: n); } } ]]输出:例2这里是一个程序使用 for 循环语句测试素数。public class Main { public static void main(String args[]) { int num; boolean isPrime true; num 50; for (int i 2; i num / 2; i) { if ((num % i) 0) { isPrime false; break; } } if (isPrime) System.out.println(Prime); else System.out.println(Not Prime); } }输出:例3在Java当中, 它是允许的, 即两个或者多个变量去对for循环进行控制。而且在初始化以及迭代部分里面是能够包含多个语句用于for循环的。每个这样的语句, 和下一个语句借助逗号来进行分隔。这儿有一个相应的例子 , 如下所示, 是这样的:public class Main { public static void main(String args[]) { for (int a 1, b 4; a b; a, b--) { System.out.println(a a); System.out.println(b b); } } }程序生成以下输出:例4for 的三个部分, 能够被用于任何目的, 再者, 有部分用于 for loop 的, 它可以是空的。public class Main { public static void main(String args[]) { int i 0; boolean done false; for (; !done;) { System.out.println(i is i); if (i 9) done true; i; } } }输出:例5对于循环而言, 能够通过嵌套以生成具备强大功能的逻辑, 举例来说, 我们能够运用嵌套的对于循环去对一个二维数组展开迭代操作。比如说, 此处呈现的是一个拥有嵌套对于循环的程序:public class Main { public static void main(String args[]) { for (int i 0; i 10; i) { for (int j i; j 10; j) System.out.print(.); System.out.println(); } } }此程序产生的输出如下所示:Java for each循环将一个序列里边的元素予以迭代, 借助 for each 循环, 且并非运用循环计数器。for each循环的的语法是:for (type variable_name:array){ }类型必须与数组类型兼容。以下代码显示了如何为每个循环使用。public class Main { public static void main(String args[]) { String[] arr new String[]{www.w3cschool.cn,a,b,c}; for(String s:arr){ System.out.println(s); } } }输出:例6接下来的这段代码, 采用了for - each样式循环针对一个二维数组加以迭代。public class Main { public static void main(String args[]) { int sum 0; int nums[][] new int[3][5]; for (int i 0; i 3; i){ for (int j 0; j 5; j){ nums[i][j] (i 1) * (j 1); } } // use for-each for to display and sum the values for (int x[] : nums) { for (int y : x) { System.out.println(Value is: y); sum y; } } System.out.println(Summation: sum); } }此程序的输出如下所示:例7for-each 样式循环在搜索数组中的元素时非常有用。public class Main { public static void main(String args[]) { int nums[] { 6, 8, 3, 7, 5, 6, 1, 4 }; int val 5; boolean found false; // use for-each style for to search nums for val for (int x : nums) { if (x val) { found true; break; } } if (found) System.out.println(Value found!); } }上面的代码生成以下结果。WWw.Share.01km.cN/Article/details/99486.sHtMLWWw.Share.01km.cN/Article/details/10441.sHtMLWWw.Share.01km.cN/Article/details/78831.sHtMLWWw.Share.01km.cN/Article/details/99712.sHtMLWWw.Share.01km.cN/Article/details/55823.sHtMLWWw.Share.01km.cN/Article/details/18355.sHtMLWWw.Share.01km.cN/Article/details/56815.sHtMLWWw.Share.01km.cN/Article/details/92213.sHtMLWWw.Share.01km.cN/Article/details/86067.sHtMLWWw.Share.01km.cN/Article/details/57810.sHtMLWWw.Share.01km.cN/Article/details/01255.sHtMLWWw.Share.01km.cN/Article/details/77854.sHtMLWWw.Share.01km.cN/Article/details/81918.sHtMLWWw.Share.01km.cN/Article/details/30886.sHtMLWWw.Share.01km.cN/Article/details/11711.sHtMLWWw.Share.01km.cN/Article/details/99573.sHtMLWWw.Share.01km.cN/Article/details/25002.sHtMLWWw.Share.01km.cN/Article/details/76167.sHtMLWWw.Share.01km.cN/Article/details/25369.sHtMLWWw.Share.01km.cN/Article/details/41995.sHtMLWWw.Share.01km.cN/Article/details/41716.sHtMLWWw.Share.01km.cN/Article/details/58484.sHtMLWWw.Share.01km.cN/Article/details/78839.sHtMLWWw.Share.01km.cN/Article/details/21653.sHtMLWWw.Share.01km.cN/Article/details/29072.sHtMLWWw.Share.01km.cN/Article/details/53242.sHtMLWWw.Share.01km.cN/Article/details/93638.sHtMLWWw.Share.01km.cN/Article/details/04673.sHtMLWWw.Share.01km.cN/Article/details/08817.sHtMLWWw.Share.01km.cN/Article/details/98763.sHtMLWWw.Share.01km.cN/Article/details/59263.sHtMLWWw.Share.01km.cN/Article/details/39216.sHtMLWWw.Share.01km.cN/Article/details/21089.sHtMLWWw.Share.01km.cN/Article/details/79314.sHtMLWWw.Share.01km.cN/Article/details/81651.sHtMLWWw.Share.01km.cN/Article/details/28957.sHtMLWWw.Share.01km.cN/Article/details/07491.sHtMLWWw.Share.01km.cN/Article/details/93942.sHtMLWWw.Share.01km.cN/Article/details/85187.sHtMLWWw.Share.01km.cN/Article/details/76806.sHtMLWWw.Share.01km.cN/Article/details/69011.sHtMLWWw.Share.01km.cN/Article/details/65588.sHtMLWWw.Share.01km.cN/Article/details/71448.sHtMLWWw.Share.01km.cN/Article/details/62215.sHtMLWWw.Share.01km.cN/Article/details/66278.sHtMLWWw.Share.01km.cN/Article/details/19921.sHtMLWWw.Share.01km.cN/Article/details/92360.sHtMLWWw.Share.01km.cN/Article/details/66503.sHtMLWWw.Share.01km.cN/Article/details/86749.sHtMLWWw.Share.01km.cN/Article/details/26928.sHtMLWWw.Share.01km.cN/Article/details/91834.sHtMLWWw.Share.01km.cN/Article/details/64086.sHtMLWWw.Share.01km.cN/Article/details/97691.sHtMLWWw.Share.01km.cN/Article/details/84925.sHtMLWWw.Share.01km.cN/Article/details/79307.sHtMLWWw.Share.01km.cN/Article/details/65041.sHtMLWWw.Share.01km.cN/Article/details/30551.sHtMLWWw.Share.01km.cN/Article/details/76454.sHtMLWWw.Share.01km.cN/Article/details/25523.sHtMLWWw.Share.01km.cN/Article/details/42816.sHtMLWWw.Share.01km.cN/Article/details/08517.sHtMLWWw.Share.01km.cN/Article/details/33527.sHtMLWWw.Share.01km.cN/Article/details/66699.sHtMLWWw.Share.01km.cN/Article/details/40081.sHtMLWWw.Share.01km.cN/Article/details/66839.sHtMLWWw.Share.01km.cN/Article/details/35350.sHtMLWWw.Share.01km.cN/Article/details/10416.sHtMLWWw.Share.01km.cN/Article/details/67326.sHtMLWWw.Share.01km.cN/Article/details/84248.sHtMLWWw.Share.01km.cN/Article/details/99142.sHtMLWWw.Share.01km.cN/Article/details/29942.sHtMLWWw.Share.01km.cN/Article/details/50918.sHtMLWWw.Share.01km.cN/Article/details/73026.sHtMLWWw.Share.01km.cN/Article/details/00832.sHtMLWWw.Share.01km.cN/Article/details/95436.sHtMLWWw.Share.01km.cN/Article/details/22093.sHtMLWWw.Share.01km.cN/Article/details/37554.sHtMLWWw.Share.01km.cN/Article/details/53944.sHtMLWWw.Share.01km.cN/Article/details/51255.sHtMLWWw.Share.01km.cN/Article/details/01963.sHtMLWWw.Share.01km.cN/Article/details/16871.sHtMLWWw.Share.01km.cN/Article/details/04572.sHtMLWWw.Share.01km.cN/Article/details/47984.sHtMLWWw.Share.01km.cN/Article/details/58741.sHtMLWWw.Share.01km.cN/Article/details/28094.sHtMLWWw.Share.01km.cN/Article/details/74323.sHtMLWWw.Share.01km.cN/Article/details/15675.sHtMLWWw.Share.01km.cN/Article/details/07654.sHtMLWWw.Share.01km.cN/Article/details/02245.sHtMLWWw.Share.01km.cN/Article/details/86123.sHtMLWWw.Share.01km.cN/Article/details/96765.sHtMLWWw.Share.01km.cN/Article/details/80863.sHtMLWWw.Share.01km.cN/Article/details/67187.sHtMLWWw.Share.01km.cN/Article/details/41831.sHtMLWWw.Share.01km.cN/Article/details/66112.sHtMLWWw.Share.01km.cN/Article/details/96446.sHtMLWWw.Share.01km.cN/Article/details/08790.sHtMLWWw.Share.01km.cN/Article/details/69753.sHtMLWWw.Share.01km.cN/Article/details/54615.sHtMLWWw.Share.01km.cN/Article/details/11827.sHtMLWWw.Share.01km.cN/Article/details/94606.sHtMLWWw.Share.01km.cN/Article/details/28373.sHtMLWWw.Share.01km.cN/Article/details/66657.sHtMLWWw.Share.01km.cN/Article/details/98525.sHtMLWWw.Share.01km.cN/Article/details/00472.sHtMLWWw.Share.01km.cN/Article/details/80809.sHtMLWWw.Share.01km.cN/Article/details/60571.sHtMLWWw.Share.01km.cN/Article/details/56106.sHtMLWWw.Share.01km.cN/Article/details/22277.sHtMLWWw.Share.01km.cN/Article/details/35096.sHtMLWWw.Share.01km.cN/Article/details/16464.sHtMLWWw.Share.01km.cN/Article/details/27739.sHtMLWWw.Share.01km.cN/Article/details/93979.sHtMLWWw.Share.01km.cN/Article/details/39608.sHtMLWWw.Share.01km.cN/Article/details/24438.sHtMLWWw.Share.01km.cN/Article/details/16083.sHtMLWWw.Share.01km.cN/Article/details/78950.sHtMLWWw.Share.01km.cN/Article/details/93672.sHtMLWWw.Share.01km.cN/Article/details/05409.sHtMLWWw.Share.01km.cN/Article/details/70590.sHtMLWWw.Share.01km.cN/Article/details/39542.sHtMLWWw.Share.01km.cN/Article/details/69295.sHtMLWWw.Share.01km.cN/Article/details/05207.sHtMLWWw.Share.01km.cN/Article/details/20755.sHtMLWWw.Share.01km.cN/Article/details/60577.sHtMLWWw.Share.01km.cN/Article/details/87482.sHtMLWWw.Share.01km.cN/Article/details/23440.sHtMLWWw.Share.01km.cN/Article/details/31044.sHtMLWWw.Share.01km.cN/Article/details/25949.sHtMLWWw.Share.01km.cN/Article/details/27068.sHtMLWWw.Share.01km.cN/Article/details/03590.sHtMLWWw.Share.01km.cN/Article/details/88407.sHtMLWWw.Share.01km.cN/Article/details/73824.sHtMLWWw.Share.01km.cN/Article/details/19843.sHtMLWWw.Share.01km.cN/Article/details/90184.sHtMLWWw.Share.01km.cN/Article/details/95750.sHtMLWWw.Share.01km.cN/Article/details/40473.sHtMLWWw.Share.01km.cN/Article/details/16657.sHtMLWWw.Share.01km.cN/Article/details/89957.sHtMLWWw.Share.01km.cN/Article/details/21036.sHtMLWWw.Share.01km.cN/Article/details/54854.sHtMLWWw.Share.01km.cN/Article/details/37946.sHtMLWWw.Share.01km.cN/Article/details/84173.sHtMLWWw.Share.01km.cN/Article/details/32914.sHtMLWWw.Share.01km.cN/Article/details/94987.sHtMLWWw.Share.01km.cN/Article/details/27349.sHtMLWWw.Share.01km.cN/Article/details/45105.sHtMLWWw.Share.01km.cN/Article/details/14728.sHtMLWWw.Share.01km.cN/Article/details/64121.sHtMLWWw.Share.01km.cN/Article/details/56042.sHtMLWWw.Share.01km.cN/Article/details/90967.sHtMLWWw.Share.01km.cN/Article/details/87688.sHtMLWWw.Share.01km.cN/Article/details/80629.sHtMLWWw.Share.01km.cN/Article/details/70848.sHtMLWWw.Share.01km.cN/Article/details/36120.sHtMLWWw.Share.01km.cN/Article/details/07481.sHtMLWWw.Share.01km.cN/Article/details/76148.sHtMLWWw.Share.01km.cN/Article/details/08039.sHtMLWWw.Share.01km.cN/Article/details/46017.sHtMLWWw.Share.01km.cN/Article/details/24166.sHtMLWWw.Share.01km.cN/Article/details/10419.sHtMLWWw.Share.01km.cN/Article/details/69551.sHtMLWWw.Share.01km.cN/Article/details/63953.sHtMLWWw.Share.01km.cN/Article/details/20963.sHtMLWWw.Share.01km.cN/Article/details/48501.sHtMLWWw.Share.01km.cN/Article/details/32391.sHtMLWWw.Share.01km.cN/Article/details/69865.sHtMLWWw.Share.01km.cN/Article/details/54157.sHtMLWWw.Share.01km.cN/Article/details/74659.sHtMLWWw.Share.01km.cN/Article/details/33030.sHtMLWWw.Share.01km.cN/Article/details/69712.sHtMLWWw.Share.01km.cN/Article/details/01541.sHtMLWWw.Share.01km.cN/Article/details/99465.sHtMLWWw.Share.01km.cN/Article/details/11843.sHtMLWWw.Share.01km.cN/Article/details/06779.sHtMLWWw.Share.01km.cN/Article/details/60206.sHtMLWWw.Share.01km.cN/Article/details/16154.sHtMLWWw.Share.01km.cN/Article/details/82370.sHtMLWWw.Share.01km.cN/Article/details/08222.sHtMLWWw.Share.01km.cN/Article/details/46994.sHtMLWWw.Share.01km.cN/Article/details/47065.sHtMLWWw.Share.01km.cN/Article/details/04446.sHtMLWWw.Share.01km.cN/Article/details/42847.sHtMLWWw.Share.01km.cN/Article/details/70711.sHtMLWWw.Share.01km.cN/Article/details/35767.sHtMLWWw.Share.01km.cN/Article/details/64602.sHtMLWWw.Share.01km.cN/Article/details/36649.sHtMLWWw.Share.01km.cN/Article/details/00446.sHtMLWWw.Share.01km.cN/Article/details/44900.sHtMLWWw.Share.01km.cN/Article/details/90302.sHtMLWWw.Share.01km.cN/Article/details/08838.sHtMLWWw.Share.01km.cN/Article/details/87147.sHtMLWWw.Share.01km.cN/Article/details/20251.sHtMLWWw.Share.01km.cN/Article/details/99597.sHtMLWWw.Share.01km.cN/Article/details/01610.sHtMLWWw.Share.01km.cN/Article/details/71163.sHtMLWWw.Share.01km.cN/Article/details/56237.sHtMLWWw.Share.01km.cN/Article/details/95418.sHtMLWWw.Share.01km.cN/Article/details/28218.sHtMLWWw.Share.01km.cN/Article/details/12838.sHtMLWWw.Share.01km.cN/Article/details/16674.sHtMLWWw.Share.01km.cN/Article/details/03462.sHtMLWWw.Share.01km.cN/Article/details/76598.sHtMLWWw.Share.01km.cN/Article/details/55331.sHtMLWWw.Share.01km.cN/Article/details/72981.sHtMLWWw.Share.01km.cN/Article/details/35088.sHtMLWWw.Share.01km.cN/Article/details/72831.sHtMLWWw.Share.01km.cN/Article/details/46482.sHtMLWWw.Share.01km.cN/Article/details/68378.sHtMLWWw.Share.01km.cN/Article/details/37763.sHtMLWWw.Share.01km.cN/Article/details/02878.sHtMLWWw.Share.01km.cN/Article/details/06502.sHtMLWWw.Share.01km.cN/Article/details/82962.sHtMLWWw.Share.01km.cN/Article/details/59283.sHtMLWWw.Share.01km.cN/Article/details/34922.sHtMLWWw.Share.01km.cN/Article/details/23157.sHtMLWWw.Share.01km.cN/Article/details/30824.sHtMLWWw.Share.01km.cN/Article/details/84765.sHtMLWWw.Share.01km.cN/Article/details/57510.sHtMLWWw.Share.01km.cN/Article/details/00546.sHtMLWWw.Share.01km.cN/Article/details/71345.sHtMLWWw.Share.01km.cN/Article/details/60510.sHtMLWWw.Share.01km.cN/Article/details/81329.sHtMLWWw.Share.01km.cN/Article/details/22144.sHtMLWWw.Share.01km.cN/Article/details/98556.sHtMLWWw.Share.01km.cN/Article/details/57387.sHtMLWWw.Share.01km.cN/Article/details/62524.sHtMLWWw.Share.01km.cN/Article/details/67123.sHtMLWWw.Share.01km.cN/Article/details/42885.sHtMLWWw.Share.01km.cN/Article/details/45056.sHtMLWWw.Share.01km.cN/Article/details/59278.sHtMLWWw.Share.01km.cN/Article/details/83367.sHtMLWWw.Share.01km.cN/Article/details/04496.sHtMLWWw.Share.01km.cN/Article/details/28004.sHtMLWWw.Share.01km.cN/Article/details/13183.sHtMLWWw.Share.01km.cN/Article/details/27204.sHtMLWWw.Share.01km.cN/Article/details/17115.sHtMLWWw.Share.01km.cN/Article/details/01398.sHtMLWWw.Share.01km.cN/Article/details/37223.sHtMLWWw.Share.01km.cN/Article/details/55308.sHtMLWWw.Share.01km.cN/Article/details/46212.sHtMLWWw.Share.01km.cN/Article/details/22352.sHtMLWWw.Share.01km.cN/Article/details/75293.sHtMLWWw.Share.01km.cN/Article/details/09047.sHtMLWWw.Share.01km.cN/Article/details/95375.sHtMLWWw.Share.01km.cN/Article/details/82323.sHtMLWWw.Share.01km.cN/Article/details/23995.sHtMLWWw.Share.01km.cN/Article/details/11568.sHtMLWWw.Share.01km.cN/Article/details/81769.sHtMLWWw.Share.01km.cN/Article/details/91598.sHtMLWWw.Share.01km.cN/Article/details/45675.sHtMLWWw.Share.01km.cN/Article/details/67490.sHtMLWWw.Share.01km.cN/Article/details/72234.sHtMLWWw.Share.01km.cN/Article/details/68301.sHtMLWWw.Share.01km.cN/Article/details/66265.sHtMLWWw.Share.01km.cN/Article/details/01967.sHtMLWWw.Share.01km.cN/Article/details/79901.sHtMLWWw.Share.01km.cN/Article/details/78759.sHtMLWWw.Share.01km.cN/Article/details/17201.sHtMLWWw.Share.01km.cN/Article/details/24278.sHtMLWWw.Share.01km.cN/Article/details/58283.sHtMLWWw.Share.01km.cN/Article/details/37267.sHtMLWWw.Share.01km.cN/Article/details/23188.sHtMLWWw.Share.01km.cN/Article/details/86578.sHtMLWWw.Share.01km.cN/Article/details/62664.sHtMLWWw.Share.01km.cN/Article/details/73840.sHtMLWWw.Share.01km.cN/Article/details/33315.sHtMLWWw.Share.01km.cN/Article/details/90768.sHtMLWWw.Share.01km.cN/Article/details/48736.sHtMLWWw.Share.01km.cN/Article/details/37888.sHtMLWWw.Share.01km.cN/Article/details/13276.sHtMLWWw.Share.01km.cN/Article/details/58253.sHtMLWWw.Share.01km.cN/Article/details/98248.sHtMLWWw.Share.01km.cN/Article/details/39246.sHtMLWWw.Share.01km.cN/Article/details/93631.sHtMLWWw.Share.01km.cN/Article/details/03109.sHtMLWWw.Share.01km.cN/Article/details/53616.sHtMLWWw.Share.01km.cN/Article/details/70108.sHtMLWWw.Share.01km.cN/Article/details/04361.sHtMLWWw.Share.01km.cN/Article/details/56426.sHtMLWWw.Share.01km.cN/Article/details/00660.sHtMLWWw.Share.01km.cN/Article/details/85597.sHtMLWWw.Share.01km.cN/Article/details/21783.sHtMLWWw.Share.01km.cN/Article/details/07016.sHtMLWWw.Share.01km.cN/Article/details/16279.sHtMLWWw.Share.01km.cN/Article/details/16928.sHtMLWWw.Share.01km.cN/Article/details/33974.sHtMLWWw.Share.01km.cN/Article/details/66607.sHtMLWWw.Share.01km.cN/Article/details/66062.sHtMLWWw.Share.01km.cN/Article/details/16926.sHtMLWWw.Share.01km.cN/Article/details/36298.sHtMLWWw.Share.01km.cN/Article/details/98619.sHtMLWWw.Share.01km.cN/Article/details/12306.sHtMLWWw.Share.01km.cN/Article/details/61924.sHtMLWWw.Share.01km.cN/Article/details/96257.sHtMLWWw.Share.01km.cN/Article/details/12831.sHtMLWWw.Share.01km.cN/Article/details/99123.sHtMLWWw.Share.01km.cN/Article/details/14254.sHtMLWWw.Share.01km.cN/Article/details/61341.sHtMLWWw.Share.01km.cN/Article/details/47871.sHtMLWWw.Share.01km.cN/Article/details/91958.sHtMLWWw.Share.01km.cN/Article/details/49476.sHtMLWWw.Share.01km.cN/Article/details/18985.sHtMLWWw.Share.01km.cN/Article/details/92200.sHtMLWWw.Share.01km.cN/Article/details/73272.sHtMLWWw.Share.01km.cN/Article/details/68536.sHtMLWWw.Share.01km.cN/Article/details/69890.sHtMLWWw.Share.01km.cN/Article/details/02863.sHtMLWWw.Share.01km.cN/Article/details/51966.sHtMLWWw.Share.01km.cN/Article/details/92978.sHtMLWWw.Share.01km.cN/Article/details/32207.sHtMLWWw.Share.01km.cN/Article/details/00916.sHtMLWWw.Share.01km.cN/Article/details/28017.sHtMLWWw.Share.01km.cN/Article/details/93878.sHtMLWWw.Share.01km.cN/Article/details/62597.sHtMLWWw.Share.01km.cN/Article/details/75965.sHtMLWWw.Share.01km.cN/Article/details/41692.sHtMLWWw.Share.01km.cN/Article/details/85093.sHtMLWWw.Share.01km.cN/Article/details/30572.sHtMLWWw.Share.01km.cN/Article/details/32002.sHtMLWWw.Share.01km.cN/Article/details/68820.sHtMLWWw.Share.01km.cN/Article/details/78582.sHtMLWWw.Share.01km.cN/Article/details/82731.sHtMLWWw.Share.01km.cN/Article/details/18232.sHtMLWWw.Share.01km.cN/Article/details/19171.sHtMLWWw.Share.01km.cN/Article/details/30292.sHtMLWWw.Share.01km.cN/Article/details/44045.sHtMLWWw.Share.01km.cN/Article/details/51257.sHtMLWWw.Share.01km.cN/Article/details/31288.sHtMLWWw.Share.01km.cN/Article/details/37904.sHtMLWWw.Share.01km.cN/Article/details/74456.sHtMLWWw.Share.01km.cN/Article/details/73029.sHtMLWWw.Share.01km.cN/Article/details/90123.sHtMLWWw.Share.01km.cN/Article/details/45685.sHtMLWWw.Share.01km.cN/Article/details/93712.sHtMLWWw.Share.01km.cN/Article/details/48926.sHtMLWWw.Share.01km.cN/Article/details/75831.sHtMLWWw.Share.01km.cN/Article/details/10418.sHtMLWWw.Share.01km.cN/Article/details/78451.sHtMLWWw.Share.01km.cN/Article/details/41929.sHtMLWWw.Share.01km.cN/Article/details/11709.sHtMLWWw.Share.01km.cN/Article/details/44496.sHtMLWWw.Share.01km.cN/Article/details/27451.sHtML