`
shrekting
  • 浏览: 1906 次
  • 性别: Icon_minigender_1
  • 来自: 西安
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论
文章列表
import java.io.*; public class Test { /** * @param args * @throws IOException */ public static void main(String[] args) throws IOException { copy(); }//main() static void copy() throws IOException{ FileReader fr = new FileReader("E:/StormMedia/十月围城DVD国语修正中字无水印[6VDY.COM原创]. ...
/** * * 编写一个方法,返回一个double型二维数组,数组中的元素通过解析字符串参数获得。如字符串参数: “1,2;3,4,5;6,7,8” 对应的数组为: d[0,0]=1.0 d[0,1]=2.0 d[1,0]=3.0 d[1,1]=4.0 d[1,2]=5.0 d[2,0]=6.0 d[2,1]=7.0 d[2,2]=8.0 */ public static void main(String[] args) { String s = "1,2;3,4,5;6,7,8"; String[] s1 = s.sp ...
Global site tag (gtag.js) - Google Analytics