赞
踩
http://noi.openjudge.cn/ch0107/20/
import java.util.Scanner; public class Main { /** * 删除给定单词的er、ly或者ing后缀结尾 * * @param word String类型的对象,代表给定单词 * @return String类型的对象,从word中删除er、ly或者ing后缀结尾 */ public String removeSuffix(String word) { int n = word.length(); // word的长度 if (word.endsWith("er") || word.endsWith("ly")) { // 如果word以er或者ly为后缀结尾 return word.substring(0, n - 2); // 返回不含最后两个字符的子串 } else if (word.endsWith("ing")) { // 否则如果word以ing为后缀结尾 return word.substring(0, n - 3); // 返回不含最后三个字符的子串 } return word; // 其它情况直接返回word } public static void main(String[] args) { Main test = new Main(); Scanner input = new Scanner(System.in); String word = input.next(); System.out.print(test.removeSuffix(word)); } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。