我需要一个允许输入一些单词的java代码,直到我输入一个空格,然后它输出相同的字符串,单词之间带有破折号(-)。这是我的尝试:
import javax.swing.JOptionPane;
public class tst4 {
public static void main(String[] args) {
String S;
int i=0;
do{
S = JOptionPane.showInputDialog("input S: ");
while( i<S.length() ){
i++;
}
} white( (int)S != 32 ); // space is equal to 32 in ASCII
System.out.println( S );
}
如果输入是:
thank(enter)
you(enter)
all(enter)
(space)
输出将是:
tnank-you-all