পৃষ্ঠাসমূহ

বুধবার, ১৬ ডিসেম্বর, ২০১৫

URI Online Judge | 2006 Identifying Tea Solution

[sourcecode language="c"]

/*****************************
* Author: Md. Rana Mahmud *
* r4n4m4hmud.wordpress.com *
*****************************/
#include <stdio.h>

int main()
{

int t,count = 0;
int a,b,c,d,e;
scanf("%d",&t);
scanf("%d%d%d%d%d",&a,&b,&c,&d,&e);
if(a==t)
count++;
if(b==t)
count++;
if(c==t)
count++;
if(d==t)
count++;

if(e==t)
count++;
printf("%d\n",count);


return 0;
}

[/sourcecode]

কোন মন্তব্য নেই:

একটি মন্তব্য পোস্ট করুন