我想创建一个数据集,然后根据插入到第一列中的数字确定第二列的值。
首先,我想创建一个包含2列的数据集(将一列保留为空白)
我要创建的数据集:(我要在数字列中插入从1到50的所有连续数字)
Expected Output:
Numbers Sum
1 55 (this is the sum of first 10 consecutive numbers)
2 65 (this is the sum of consecutive 10 numbers from 2 to 11)
3 75 (this is the sum of consecutive 10 numbers from 3 to 12)
4 85 (this is the sum of consecutive 10 numbers from 4 to 13)
5
6
7
8
9
10
11
12
13
依此类推,我想通过在列号中插入1到50的值来计算1到50的值的总和,并获取10个连续数字的总和。
素胚勾勒不出你
相关分类