blob: 021c3c718f2c19706d489c2b035a62b973a1a821 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import java.io.BufferedReader;
import java.io.InputStreamReader;
class DotLeaders {
public static void main(String[] args) throws java.io.IOException {
int dotnum;
BufferedReader word1I = new BufferedReader(new InputStreamReader(System.in));
BufferedReader word2I = new BufferedReader(new InputStreamReader(System.in));
System.out.println("first Word");
String word = word1I.readLine();
System.out.println("second word");
String word2 = word2I.readLine();
dotnum = 30-(word.length()+word2.length());
System.out.print(word);
for(dotnum=dotnum;dotnum>0; dotnum--){
System.out.print(".");
}
System.out.print(word2);
}
}
//By msglm; Licensed under the AGPL v3
|