第3讲2
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
int x = 0, y = 0;
while(n--)//while(n--);即为执行n次 (n=1的话,执行一次(下一次n=0即停止))
{
int t;
cin >> t;
if(t >= 10 && t <= 20) x++;
else y++;
}
cout << x << " in" <<endl;
cout << y << " out" <<endl;
return 0;
}