我用java编程对这道题进行求解了 结果是19908 源代码如下:public class The200Number { public static void main(String[] args) { int line = 0; int position = 8; long value = 0; int total = 0; for (int i = 1; i <= 199;i++) { total = total + i; } value = total + 8; System.out.println(value); } }