Run ID:154559

提交时间:2026-05-30 17:11:13

#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; }