gpt4 book ai didi

c - 在c中绘制sin函数

转载 作者:行者123 更新时间:2023-11-30 20:57:12 27 4
gpt4 key购买 nike

我正在尝试在 C 中绘制(使用 ASCII 文本字符)一个 sin 函数,其中“y”分量作为幅度,但我不太确定该怎么做。

我到目前为止:http://i.imgur.com/sTR4E.jpg

然后我考虑尝试如何使用 sin 函数,所以我写了 y = x * sin();

但我不断收到错误:http://i.imgur.com/olQM4.jpg

输出应该是这样的:

***
*****
***

最佳答案

你在这里:

#include <stdio.h>
#include <math.h>

#define RESOLUTION 20
#define AMPLITUDE 80
#define ZxPI 6.283

int main()
{
int i;

for( i=1; i<=RESOLUTION; i++ )
{
float x = (AMPLITUDE/2) * (sin( (ZxPI / RESOLUTION)*i ) + 1);
int y = x ;
while( y-- )
{
printf("*");
}
printf("\n");
}

return 0;
}

关于c - 在c中绘制sin函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11764769/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com