解题思路:字符串的长度n决定了可以插入字符的位置数量,为n+1;因此一共有26(n+1)中插入方式,但是若插入的字符与相邻字符一样,则插入字符的左右不同位置输出的字符串是一样的,比如abb与abb,因此要减去这种重复的情况,即减去字符串的长度n。
import java.util.;
public class Main{
public static void main(String arg[]){
Scanner scan=new Scanner(System.in);
String str=new String();
str=scan.next();
int count=(str.length()+1)
26-str.length();
System.out.println(count);
}
}