Run ID:154604
提交时间:2026-05-30 17:22:24
#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; }