杭电acm2317

这样的水题做他干嘛,我还提交5次才ac,马丹,我是来读英语来了

#include <stdio.h>

int main(){
	
	int n;
	long a, b, c;
	scanf("%d", &n);
	while(n--){
	scanf("%ld%ld%ld", &a, &b, &c);
	if(b-c>a) printf("advertise\n");
	if(b-c==a) printf("does not matter\n");
	if(b-c<a) printf("do not advertise\n");
	}

	return 0;
}



posted @ 2015-09-20 19:26  StevenLuke  阅读(110)  评论(0编辑  收藏  举报