import java.util.Random;
public class Test{
public static void main(String[] args){
final Random r = new Random();
String ch = "aeiouycbdfgh";
int len = r.nextInt(10) + 10;
StringBuffer sb = new StringBuffer();
for (int i=0; i<len; i++){
sb.append(ch.charAt(r.nextInt(ch.length())));
}
System.out.println("String:" + sb);
System.out.println("Vowels:");
outputVowels(sb.toString());
}
public static void outputVowels(String s){
我該如何做一個for循環來輸出每個不同行中的ch字符串的元音?使用For循環打印出元音
編輯:該程序是爲了輸出 一個 ê 我 Ø ü
'對(INT I = 0;我<5; i ++)System.out.println(ch.charAt(i));'? – Seelenvirtuose 2014-09-22 07:45:37
@Seelenvirtuose,他們已經摸索似乎的問題。他們從ch創建一個隨機選擇的新字符串。你可以在代碼中看到他們打算在構建器中顯示元音。 – ChiefTwoPencils 2014-09-22 07:48:32
來自我的投票 - 沒有明顯跡象表明以前的研究或努力。這是一個非常常見的編程任務 - 沒有任何嘗試只是很差。 – 2014-09-22 07:49:46