我們有 n 枚硬幣,我們必須用硬幣的方式來組成最大高度的金字塔。我們將第一個硬幣安排在第一行,第二個和第三個硬幣安排在第二行,依此類推
在給定的圖中,我們用高度為3 的硬幣製作金字塔6。我們不能製作高度 4,但我們需要 10 個硬幣。使用這個公式可以很簡單地得到高度;
H = {(-1 √(1 8N))/2}
Input: n = 10 Output: Height of pyramid: 4
#使用此公式計算高度
H = {(-1 √(1 8N))/2}
#include <iostream> #include <math.h> using namespace std; int main() { int n=10; int height = (-1 + sqrt(1 + 8 * n)) / 2; cout << "Height of pyramid: " <<height; }
以上是C/C++ 模組方程式解的程式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!