#P1699. The comment in cpp

    ID: 665 远端评测题 1000ms 32MiB 尝试: 0 已通过: 0 难度: (无) 上传者: 标签>2008 “Insigma International Cup” Zhejiang Collegiate Programming Contest - Warm Up(4)

The comment in cpp

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.

2 1 /*hduacm 1 /*hduacm //hduacm */
0 /*hduacm 1 /*HDUACM //HDUACM */

Author

wangye