Update

One new tab added. Open in browser view if it is not visible. (25/08/2022 08:48)

Air Conditioner Temperature

Language : C
(NOTE : Try a few times yourself before moving to the solution)


#include <stdio.h>


int main(void) {
	int t;
	scanf("%d\n",&t);
	
	
	while(t--)
	{
	    int a,b,c;
	    scanf("%d %d %d\n",&a,&b,&c);
	    
	    if(b>=a && b>=c)
	    printf("Yes\n");
	    else
	    printf("No\n");
	}
	return 0;
}




No comments: