d511.
小明的作業
--
板橋高中教學題
| From: [182.235.193.8] |
發表日期
:
2011-08-31 11:15
#include<stdio.h>
int main()
{
int a,b,c,i,x,y,z,counter=0,t=1;
while(scanf("%d%d%d",&a,&b,&c)==3)
{
//for(i=1;i<=5;i++)
//{
int k=0;
x=a*a;y=b*b;z=c*c;
//(x+y>z && y+z>x && x+z>y)
while(x+y>z && y+z>x && x+z>y )
{
t=t+1;
//if((a+b>c)||(b+c>a)||(a+c>b)) k++;
//}
printf("%d\n",t);
//counter++;
}
}
return 0;
}