摘要:
package wanzai; //鸟类 public class Bird { //属性 成员变量 //颜色 String Color; //重量 double Weight; //行为 方法 //飞 void-没有返回值 void fly() { System.out.println("我能飞" 阅读全文
摘要:
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 阅读全文
摘要:
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 阅读全文