Md. Arifur Rahman (Sazal)
ক্রমে ক্রমে হ্রাস পাচ্ছে বিবেক, ঘুমিয়ে পড়ছে মানবতা……
Pages
Home
ACM Algorithm
Math
E- Balagurusamy
Basic Program
Assembly Language
Gallery
My Portfolio
Thursday, 19 May 2011
uva 11877-The cocola store
#include<stdio.h>
int main()
{
int n,i,c;
//freopen("in.txt","r",stdin);
while(scanf("%d",&n)&&n)
{
c=0;
while(n>=3)
{
i=n/3;
c=c+i;
n=n%3+i;
}
if(n==2)c++;
printf("%d\n",c);
}
return 0;
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment