アットウィキロゴ

0124

class pro0124{
public static void main(String args[]){
int n;
double x,y;

for (n=0;n<101;n++){
x=0.01*n*Math.PI;
y=Math.cos(x);
System.out.println(y);
}

}
}
最終更新:2010年09月22日 20:29