|
||||||||||
The comment in cppTime Limit: 3000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 545 Accepted Submission(s): 67 Problem Description In C++ ,there are two styles of comment, one is a stream of characters enclosed by "/*" and "*/", and the other is a single line beginning with "//". Comments will not be nested as in c++. Your task is to deal with these comments, which is to capitalize all the letters in a comment and count the number of occurrence of comments. To simplify your task, you may assume that comments will not appear in constant strings. Input The first line speicifies the number of test cases T (T <= 10). Each test case begins with a number L (L <= 100), the number of lines of the C++ code, following L lines which is the body of the code. The length of each line of the code will not exceed 200. Output For each test case, output the number occurrence of comments you've found and then the resulting text of your processing. print a line after each test case. Sample Input
Sample Output
Author wangye Source | ||||||||||
|