首页 > 编程语言 > 详细

java学习初体验之课后习题

时间:2016-02-14 15:22:59      阅读:117      评论:0      收藏:0      [点我收藏+]

import java.util.Scanner;


public class HelloWorld {

public static void main(String[] args) {

//打印Hello World;
System.out.println("HelloWorld");
//用for循环打印10遍Hello World;
for(int i=0;i<10;i++){
System.out.println("HelloWorld");
}

//用while循环将Hello World以单个字符的形式打印;
String str="Hello World";
char[] ch = str.toCharArray();
int i=0;
while (i<ch.length){
System.out.print(ch[i]+"\n");
i++;
}

//将Hello World以倒序打印;
String str1="Hello World";
char[] ch1 = str1.toCharArray();
int number=ch1.length-1;
while (number>=0){
System.out.print(ch1[number]+"\n");
number--;
}

//在控制台输入任意内容,当内容里包含”我是宝宝“时打印Hello World;
Scanner input=new Scanner(System.in);
String str2=input.next();
String a="我是宝宝";
if(str2.contains(a)){
System.out.println("Hello World");
}

//打印数组helloWorld,String[] helloWorld = {"h","e","l","l","o","r"," ","w","o","r","l","d"};
String[] list={"h","e","l","l","o","r"," ","w","o","r","l","d"};
for(String element: list){
System.out.print(element);
}

}

}

java学习初体验之课后习题

原文:http://www.cnblogs.com/sunyucui/p/5188995.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!