Category: ACM
It’s really easy problem..You will enjoy definitely #include<iostream> #include<cstdio> int main() { unsigned int weight,divide; while(scanf(“%u”,&weight)==1){ divide=weight%2;…
Dont forget to use format specifier for unsigned int %u #include<iostream> #include<cstdio> int main() { unsigned int a,b,output;…
By thinking 24 hr++ I have solved this problem.I got guidance from my friend M.H Riyad also..He…
Solution actually simple…You have to think simple here is the cartesian co ordinate link check here then…
Sometimes i feel i have to write those in somewhere so i am writing those techniques here…
#include<stdio.h> int main() { int i,t,a,b; scanf(“%d”,&t); for(i=0;i<t;i++){ scanf(“%d %d”,&a,&b); if(a<b) printf(“<\n”); else if(a>b) printf(“>\n”); else printf(“=\n”);…
Recent Comments