Run ID:147886
提交时间:2026-02-08 22:57:26
#include <iostream> using namespace std; int main() { for (int row = 1; row <= 5; ++row) { for (int col = 0; col < row; ++col) { cout << '%'; } cout << endl; } return 0; }