7个回答
展开全部
public class hello {
private String xx;
private String yy;
public String getXx() {
return xx;
}
public void setXx(String xx) {
this.xx = xx;
}
public String getYy() {
return yy;
}
public void setYy(String yy) {
this.yy = yy;
}
public hello()
{
xx="Hello";
}
public void Print()
{
System.out .print(xx+yy);
}
public static void main(String[] args)
{
hello a=new hello();
a.setYy(" World");
a.Print();
}
}
private String xx;
private String yy;
public String getXx() {
return xx;
}
public void setXx(String xx) {
this.xx = xx;
}
public String getYy() {
return yy;
}
public void setYy(String yy) {
this.yy = yy;
}
public hello()
{
xx="Hello";
}
public void Print()
{
System.out .print(xx+yy);
}
public static void main(String[] args)
{
hello a=new hello();
a.setYy(" World");
a.Print();
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public static void main(String[] args) {
// 字符串反转
String str = "abcdefghi";
char[] a = str.toCharArray();
StringBuffer sb = new StringBuffer();
for (int i = a.length - 1; i > -1; i--) {
sb.append(a[i]);
}
System.out.println();
System.out.println("反转后的字符串");
System.out.print(sb);
}
// 字符串反转
String str = "abcdefghi";
char[] a = str.toCharArray();
StringBuffer sb = new StringBuffer();
for (int i = a.length - 1; i > -1; i--) {
sb.append(a[i]);
}
System.out.println();
System.out.println("反转后的字符串");
System.out.print(sb);
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
package com.test;
public class Test {
public static void main(String[] args) {
// TODO Auto-generated method stub
for(int i = 0;i<60;i++){
try {
Thread.sleep(500);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("['"+i+"'],");
}
}
}
public class Test {
public static void main(String[] args) {
// TODO Auto-generated method stub
for(int i = 0;i<60;i++){
try {
Thread.sleep(500);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
System.out.println("['"+i+"'],");
}
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我给你一个地址,上面有很多java方面的程序例子。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public class Hello{
public static void main(String[] args){
System.out.println("Hello World!");
}
}
public static void main(String[] args){
System.out.println("Hello World!");
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询