#include <stdio.h>
#include <stdlib.h>


int main(){
    int t =7;
    
switch (t)
     {
        case t < 10:
                    printf("Hoje ta' fazendo muito frio");
                    break;
        case t < 25:
                    printf("A temperatura está agradavel");
                    break;
        default:
                    printf("Hoje ta' quente pra chuchu");
     } 
     
     system("pause");
     return 0;
}