#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
int it = 5;
int in[3], count=0;
while (it-- > 0) {
cin >> in[0] >> in[1] >> in[2];
sort(in, in + 3);
if (in[0] + in[1] > in[2])
count++;
}
cout << count;
return 0;
}
很雷欸
不要直接貼程式碼在解題報告
請注意:您正在編寫「解題報告」,請勿直接貼出完整程式碼(將被隱藏),而是請說明解題思路、所需使用的演算法...等,讓不會寫的使用者可以從中學習獲得成長。