我想建立一個程序,它將接受來自用戶的數字並創建弗洛伊德三角形。使用C++打印弗洛伊德三角形
我試過使用弗洛伊德三角形的邏輯,但它的打印作爲一條線。
實施例:
Enter total numbers: 5
Enter the numbers: 3,8,2,4,9
O/P:
3
82
249
這是我的代碼:
#include <iostream>
using namespace std;
int main()
{
int totalnos, j, i;
cout << "Enter total numbers: ";
cin >> totalnos;
int numbers[totalnos];
cout << "Enter the numbers: ";
for (i = 1; i <= totalnos; i++)
{
cin >> numbers[i];
}
for (i = 1; i <= totalnos; i++)
{
for (j = 1; j <= 1; j++)
{
cout << numbers[i];
}
}
}