我正在参加Java课程的介绍,目前正在进行我的每周作业之一。我几乎完成了它,除了我无法弄清楚如何制作这个表(最多180度) :
我假设我需要使用某种类型的嵌套for循环,并且我需要在我的println中使用sin,cos和tan,但除此之外我无能为力。
谢谢。
答案 0 :(得分:0)
也许这段代码会让您了解如何格式化表并帮助您完成任务(如果这是问题)。
public class Table {
//badly formatted example (with meaningless values)
public static void main(String[] args) {
int rows = 10;
double sin = 0;
double cos = 0;
double tan = 0;
for (int j = 1; j <= rows; j++){
// print values
System.out.print(sin + " ");
System.out.print(cos + " ");
System.out.print(tan + " ");
System.out.println();
//modify values;
sin = sin + 1;
cos = cos + 2;
tan = tan + 3;
}
}
}