首页 > 代码库 > UVa 483 - Word Scramble
UVa 483 - Word Scramble
又用强大的正则表达式和Java的字符串API水过一道题。哈哈 不过容易Runtime Error 这是最令人沮丧的事情。
import java.util.*; import java.util.regex.Matcher; import java.util.regex.Pattern; public class Main483 { public static void main(String[] args) { Scanner scan = new Scanner(System.in); String str; StringBuilder strB; Pattern p = Pattern.compile("\\S+"); while(scan.hasNextLine()) { str = scan.nextLine(); Matcher m = p.matcher(str); int cnt = 0; while(m.find()) { strB = new StringBuilder(m.group()); if(cnt != 0) System.out.print(" "); System.out.print(strB.reverse()); cnt ++; } System.out.println(); } } }
UVa 483 - Word Scramble
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。