+ 2
Floyd's triangle code using c++
#include <iostream> using namespace std; int main( ) { int rows, number = 1; cout << "Enter number of rows: "; cin >> rows; for(int i = 1; i <= rows; i++) { for(int j = 1; j <= i; ++j) { cout << number << " "; ++number; } cout << endl; } return 0; }
1 Réponse
+ 4
change line after cin..