Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の式があります。
F = X / 1+4+9+16+....+n^2
QBasicの結果を見つけるプログラムをどのように書くことができFますか?
QBasic
F
ありがとう。
CLS INPUT "Input the value of n: ", n% INPUT "The value of X: ", X denominator% = 0 FOR i% = 1 TO n% denominator% = denominator% + i% ^ 2 NEXT i% F = X / denominator% PRINT "F = "; F
この便利なページから、最初の n 個の自然数の二乗和は次のようになります。
したがって、次のように計算するだけです。
F = X * 6 / (n * (n + 1) * (2 * n + 1))