请问一下JAVA有数学涵数么?
我现在在学习C++,也是刚学习不久,上课教C++,我用课余时间看看JAVA,想学习多些东西,
在JAVA书上有道题目是要求用循环语句输出
*
* *
* *
* *
* *
* *
* *
* *
*
需要用到数学涵数求绝对值,这样用一个外循环就可以输出9行了,用在C++我可以做得出来,里有cmath可以调用数学涵数,
不知道JAVA的数学涵数是什么,
哪位朋友可以帮帮忙!
我用C++写的就是这样,用到了cmath.
#include <iostream>
#include <cmath>
using namespace std;
int main()
{
int n=9;
for(int i=1; i<=n; i++){
for(int k=0; k<=fabs((n+1)/2-i); k++)
cout<<' ';
cout<<'*';
for(int j=1; j<=n-(fabs((n+1)/2-i)*2+2); j++)
cout<<' ';
if(n-(fabs((n+1)/2-i)*2+2)>0)
cout<<'*';
cout<<endl;
}
return 0;
}
public class HH {
public static void main(String args[])
{
int i;
int j;
for (i=-3;i<=3;i++)
{
for (j=1;j<=Math.abs(i);j++)
System.out.print(" ");
for (j=1;j<=7-2*Math.abs(i);j++)
{
if (j==1||j==7-2*Math.abs(i))
System.out.print("*");
else
System.out.print(" ");
}
System.out.println(" ");
}
}
}
[此贴子已经被作者于2006-2-24 11:07:15编辑过]