下面是这个问题的一些Java代码:

int total1 = 0;
int total2 = 0;
for (int x = 0; x <= n; x++)
    total1 = total1 + x;
for (int y = 1; y < n; y++)
    total2 += total1 * y;

基于上面的问题,我做了一个像下面这样的回答请帮我核对我的答案是对是错。谢谢你的帮助。
Operation        Number of operations
-------------------------------------
Assignment       n² + 1
Addition         n²
Multiplication   n²
Total Operation  3n² + 1

最佳答案

让我们从这个开始:为什么你认为有n^2+1次的作业?

09-26 03:19