#include
int main(void)
{
float a, b, c;
scanf("%f%f%f",&a,&b,&c);
if(a+b>c&&a+c>b&&b+c>a&&a>0&&b>0&&c>0)
{
printf("right\n ");
}
else
{
printf("error\n");
}
return 0;
}
#include
int main()
{
printf("hello world\n");
return 0;
}
以上代码为用C语言输出hello world