自考

各地资讯
当前位置:考试网 >> 自学考试 >> 自考真题 >> 工学类 >> Java 语言程序设计(一) >> 文章内容

排行热点

全国2012年10月自考Java语言程序设计(一)试题_第6页

来源:考试网 [ 2012年11月30日 ] 【大 中 小】

五、程序分析题(本大题共5小题,每小题4分,共20分)

32. 阅读下列程序,请写出该程序的输出结果。

public class Test3 2{

public static void main(String[] args){

 int i,j;

 for(i=0;i<5;i++)

{

for(j=1;j<5-i;j++)

System.out.print(" ");

           for(j=0;j<=i;j++)

System.om.print(’"*");

 System. out. Println( );

        }

    }

 }

33. 阅读下列程序,请写出该程序的输出结果。

 public class Test3 3{

   static int x=1;

 int y=0;

 Test33() {

 x++;y++;

 }

 public static void main(String[] args) {

     Test33 st=new Test33();

   System.out.println("x="+x);

 System.out.println("st.y=" +st.y);

 st=new Test33();

 System.out.println("x="+x);

 System.out.println("st.y="+st.y);

   }

 }

责编:dengting