2_6.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //2_6
  2. //  3)
  3. //#include <stdio.h>
  4. #include <iostream.h>
  5. #include <iomanip.h>
  6. #include <math.h>
  7. void main()
  8. {
  9.   float a,b,c,s,area;
  10.   //printf("please input 3 sides of one triangle:n");
  11.   cout <<"please input 3 sides of one triangle:n";
  12.   //scanf("%f,%f,%f",&a,&b,&c);  //输入时以逗号作为数据间隔
  13.   cin >>a >>b >>c;   //输入时以空格作为数据间隔
  14.   s=(a+b+c)/2;
  15.   area=sqrt(s*(s-a)*(s-b)*(s-c));
  16.   //printf("a=%7.2f,b=%7.2f,c=%7.2fn",a,b,c);
  17.   cout <<setiosflags(ios::fixed) <<setprecision(2)
  18.        <<"a=" <<setw(7) <<a
  19.        <<",b=" <<setw(7) <<b
  20.        <<",c=" <<setw(7) <<c <<endl;
  21.   //printf("area of triangle is %10.5f",area);
  22.   cout <<"area of triangle is " <<setw(10)
  23.        <<setprecision(5) <<area <<endl;
  24. }