下面哪里出错了
// Èý½ÇÐÎ.cpp : Defines the entry point for the console application.//
#include "stdafx.h"
#include <math.h>
#include <iostream.h>
int main(int argc, char* argv[])
{ double s,p;
int a,b,c;
cin>>a>>b>>c;
if ((a+b>c)&&(b+c>a)&&(a+c>b))
{ p=(a+b+c)/2; s=sqrt(p*(p-a)*(p-b)*(p-c));}
cout<<p;
cout<<s;
cout<<"ÄܳÉÈý½ÇÐÎ"<<endl;
else cout<<"²»ÄÜ"<<endl;
return 0;
}