Codeforces 270A. Fancy Fence Solution

Hints

Solve in C:

#include<stdio.h>
int main()
{

    int t,n,i,r;
    while(scanf("%d",&t)!=EOF)
    {
        for(i=1; i<=t; i++)
        {
            scanf("%d",&n);
            r=180-n;
            if((360%r)==0)
                printf("YES\n");
            else
                printf("NO\n");
        }
    }
}

No comments

Most View Post

Recent post

RESTful APIs with CRUD Operations in Laravel 12| (2025)

  RESTful APIs serve as the foundation of modern web development. They follow a set of rules called Representational State Transfer (REST) t...

Powered by Blogger.