#include<stdio.h>
int main()
{
int a=1,k=2,n=3;
int diff=n-k;
if(diff>=0){
while(k>1)
{
k--;
a=(a<<1) | 1;
}
while(diff>=1)
{
a=a<<1;
diff--;
}
printf("%d",a);
}
else
printf("value not applicable: %d",a);
return 0;
}
--
You received this message because you are subscribed to the Google Groups
"Algorithm Geeks" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/algogeeks?hl=en.