08/11/05 14:11:58
>>246
#include<stdio.h>
#include<math.h>
int main(){
double x, y, pai=3.14;
for(y=1; y>=-1; y=y-0.1){
for(x=0; x<=4*pai; x++){
if(y==cos(x)){
putchar('************************************');
}
else{
putchar(' ');
}
}
putchar('\n');
}
return 0;
}