摘要: package wanzai; //鸟类 public class Bird { //属性 成员变量 //颜色 String Color; //重量 double Weight; //行为 方法 //飞 void-没有返回值 void fly() { System.out.println("我能飞" 阅读全文
posted @ 2016-03-02 16:19 什么玩楞啊,我叫旺仔 阅读(298) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner; public class a { public static void main(String[] args) { for(int j=1;;j++){ Scanner sc=new Scanner(System.in); System.out.p 阅读全文
posted @ 2016-03-02 14:37 什么玩楞啊,我叫旺仔 阅读(114) 评论(0) 推荐(0) 编辑
摘要: String str="1 2 3"; char[] c=new char [str.length()]; int j=0; for(int i=0;i<c.length;i++) { if(str.charAt(i)!=' ') { c[j]=str.charAt(i); j++; } } Str 阅读全文
posted @ 2016-03-02 10:22 什么玩楞啊,我叫旺仔 阅读(364) 评论(0) 推荐(0) 编辑