#40684: 解題報告


gwjh112086 (gwjh112086)


這是這題的解答

#include <iostream>
using namespace std;
 
int main() {
int a,b,c;
int total=0;
while(cin>>a>>b>>c){
if((a+b)>c and (a+c)>b and (b+c)>a) total++;
}
cout<<total<<endl;
}
就是這樣