[Add] solved solutions

This commit is contained in:
2023-03-02 20:59:51 +07:00
parent 48081e0a05
commit 5499ac06c2
42 changed files with 1480 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
#include <iostream>
#include <cstdio>
using namespace std;
int main()
{
char ch;
int c, h, e, f;
c = h = e = f = 0;
do
{
ch = getchar();
if (ch == 'C')
{
c++;
}
else
{
if (ch == 'H' && c > h)
{
h++;
}
else
{
if (ch == 'E' && h > e)
{
e++;
}
else
{
if (ch == 'F' && e > f)
{
f++;
}
}
}
}
} while (ch != '\n');
cout << f << endl;
return 0;
}