在屏幕上用“*”显示0~360度的余弦函数cos(x)曲线
#include <stdio.h> #include <math.h> #define WIDE 62 int main(void) { double y, m; int x; for(y=1;y>=-1;y-=0.1) { m = acos(y)*10; for(x=1;x<m;++x) printf(" "); printf("*"); for(;x<(WIDE-m);++x) printf(" "); printf("*"); printf("\n"); } return 0; }
|
Output:
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
* *
**
发表于 @ 2010年07月27日 00:34:00 | 评论( 0 ) | 编辑| 举报| 收藏
阅读(1037) | 评论(0) | 转发(0) |