上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: public class hhh{public static void main(String[]args){ String s1="hkdhskhegoihwhonfdsaaa"; int count=0; for(int x=0;x<s1.length();x++) { if('a'==s1.... 阅读全文
posted @ 2014-09-14 17:36 fantasy12436109 阅读(206) 评论(0) 推荐(0) 编辑
摘要: import java.util.Scanner;public class inputoutar{ public static void main(String[] args) throws NumberFormatException{ Scanner scanner=new Scanner(Sys... 阅读全文
posted @ 2014-09-14 17:32 fantasy12436109 阅读(1488) 评论(0) 推荐(0) 编辑
摘要: public class ish{public static void main(String[]args){String s="call me ishmae";System.out.println(s.charAt(s.length()-1));}} 阅读全文
posted @ 2014-09-14 17:27 fantasy12436109 阅读(257) 评论(0) 推荐(0) 编辑
摘要: import java.awt.*;import javax.swing.*;import java.awt.event.*;public class Login extends JFrame { JTextField usernameTextField; JPasswordField pw... 阅读全文
posted @ 2014-09-14 17:23 fantasy12436109 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 类作为一种应用数据类型,和基本数据类型的变量一样。不同类中存在对象与对象之间的类型转问题,对象的类型转换只能在 具有继承关系的 父类对象-----子类对象 之间进行 子类通常比父类拥有更多的域和方法class Human{ // 父类Human的定义 String name; int age; c... 阅读全文
posted @ 2014-09-14 16:57 fantasy12436109 阅读(222) 评论(0) 推荐(0) 编辑
摘要: public class CreateTwoArray{ public static void main(String []args){ int[][]arr=new int [2][3]; System.out.println("数组arr的初始化后:"); System.out.... 阅读全文
posted @ 2014-09-14 15:46 fantasy12436109 阅读(96) 评论(0) 推荐(0) 编辑
摘要: class parent{ protected static int count=0; public parent() { count++; }}public class child extends paren... 阅读全文
posted @ 2014-09-14 15:41 fantasy12436109 阅读(306) 评论(0) 推荐(0) 编辑
摘要: import java.util.*;public class Arraysort{ public static void main(String[]args){ int[]a={100,34,88,6,39,5}; System.out.println("排序前的数组为:"); System.ou... 阅读全文
posted @ 2014-09-14 15:35 fantasy12436109 阅读(142) 评论(0) 推荐(0) 编辑
摘要: public class ArrayForeach{ public static void main(String []args){ int [][]a={{1,2,3},{4,5,6},{7,8,9},{10,11,12}} ; for(int []row:a) { for(... 阅读全文
posted @ 2014-09-14 15:30 fantasy12436109 阅读(124) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;class Building{ int Floors,Rooms; double Total_area;public: Building( int f,int r,double t) { Floors=f; Roo... 阅读全文
posted @ 2014-09-14 14:07 fantasy12436109 阅读(120) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页