Advertisement
noshin98

uva 13034

Jul 13th, 2016
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.54 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     int n,i,a,j,count;
  5.     while(scanf("%d",&n)==1)
  6.     {
  7.         for(i=1;i<=n;i++)
  8.         {
  9.             count=0;
  10.             for(j=1;j<=13;j++)
  11.             {
  12.                 scanf("%d",&a);
  13.                 if(a!=0)
  14.                 {
  15.                     count=count+1;
  16.                 }
  17.  
  18.             }
  19.             if(count==13)
  20.             {
  21.                 printf("Set #%d: Yes\n",i);
  22.             }
  23.             else
  24.                 printf("Set #%d: No\n",i);
  25.         }
  26.     }
  27.     return 0;
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement