mirror of
https://github.com/tiennm99/codechef.git
synced 2026-06-10 16:10:49 +00:00
[Add] solved solutions
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
#include <iostream>
|
||||
#include <string.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main()
|
||||
{
|
||||
int t;
|
||||
cin >> t;
|
||||
while (t--)
|
||||
{
|
||||
string s;
|
||||
cin >> s;
|
||||
int count = 0;
|
||||
int l = s.length();
|
||||
for (int i = 0; i < l; i++)
|
||||
{
|
||||
if (s[i] == '<' && s[i + 1] == '>')
|
||||
{
|
||||
count++;
|
||||
}
|
||||
}
|
||||
cout << count << endl;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user