java用画正弦函数_java – 绘制正弦和余弦函数

我目前在做作业方面遇到了一些问题.

这是练习:

(Plot the sine and cosine functions) Write a program that plots the sine function in red and the cosine function in blue.

hint: The Unicode for Pi is \u03c0. To display -2Pi, use g.drawString(“-2\u03c0”, x, y). For a trigonometric function like sin(x), x is in radians. Use the following loop to add the points to a polygon p

for (int x = -170; x <= 170; x++) {

p.addPoint(x + 200, 100 - (int)(50 * Math.sin((x / 100.0) * 2 * Math.PI)));

-2Pi is at (100, 100), the center of the axis is at (200, 100), and 2Pi is at (300, 100)

Use the drawPolyline method in the Graphics class to connect the points.

好吧,所以我所拥有的sin函数与练习中的函数略有不同,但是它起作用所以它应该不是问题.另一方面,余弦函数,我无法找到它的代码所以我没有在我的程序中.

我还需要做的是将-Pi和Pi放在他们可敬的地方的图表上.

所以,这是代码.

import java.awt.BorderLayout;

import java.awt.Graphics;

import java.awt.P

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值