C++ 编程/编程语言/比较/托管 C++
外观
托管 C++ 是对 C++ 托管扩展的简写,它是来自 .NET 框架 的 微软 的一部分。这种 C++ 语言的扩展是为了添加自动垃圾回收和堆管理、数组的自动初始化以及对多维数组的支持而开发的,简化了在 C++ 中编程的所有那些细节,否则将由程序员完成。
托管 C++ 不会编译成机器代码。相反,它被编译成 通用中间语言,这是一种面向对象的机器语言,以前被称为 MSIL。
#include<iostream.h>
#include<math.h>
void main()
{
int choose;
double Area,Length,Width,Radius,Base,Height;
cout<<"circle(1)";
cout<<"Square(2)";
cout<<"Rectangle(3)";
cout<<"Triangle(4)";
cout<<"select 1,2,3,4:";
loop:
cin>>choose;
if(choose=='1')
{
double Radius;
const double pi=3.142;
cout<<"Enter Radius";
cin>>Radius;
Area=pi*pow(Radius,2);
}
else if(choose=='2')
{
double Length;
cout<<"Enter Length:";
cin>>Length;
Area= pow(1,2);
}
else if (choose=='3')
{
double Length,Width;
cout<<"Enter Length:";
cin>>Length;
cout<<"Enter Width:";
cin>>Width;
Area=Length*Width;
}
else if(choose=='4')
{
double Base,Height;
cout<<"Enter Base:";
cin>>Base;
cout<<"Enter Height:";
cin>>Height;
Area=Height*Base/2;
}
else
{
cout<<"Select only 1,2,3,4:";
goto loop;
}
cout<<"Area:"<<Area;
}