标签:
#include<iostream> #include<cstring> #include<cstdio> #include<cmath> using namespace std; int main() { int n; cin>>n; int i,j,k; for(i = 0;i<n;i++) { int a,b,c; cin>>a>>b>>c; if(a>b-c) { cout<<"do not advertise"<<endl; } else if(a == b-c) { cout<<"does not matter"<<endl; } else { cout<<"advertise"<<endl; } } return 0; }
标签:
原文地址:http://www.cnblogs.com/wos1239/p/4557011.html