谁知道哪本书里有类似大整数的四则运算这类题目,工程实践,c语言用的。

如题所述

第1个回答  2015-07-15
网上应该有源码!我自己以前也写过,不是很难
第2个回答  2015-07-18
public class test
{
public static void main(String[] args)
{
Circle C=new Circle(4);
Rectangles Rt=new Rectangles(4, 4);
Triangle T=new Triangle(6,7);
C.Area();
Rt.Area();
T.Area();
}
}本回答被网友采纳
相似回答