欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【转】用C语言画波形

程序员文章站 2022-05-22 12:34:27
...
#include <stdio.h>
#include <math.h>
void main()
{
    double y;
    int x,m;
    for(y=1;y>=-1.0;y-=0.1)
    {
        m=acos(y)*10;
        for(x=1;x<m;x++)
            printf(" ");
        printf("*");
        for(;x<62-m;x++)
            printf(" ");
        printf("*\n");
   }
    for(y=1;y>=-1.0;y-=0.1)
    {
        printf("%-3f\n",acos(y)*10);
    }

}
【转】用C语言画波形
相关标签: C语言