Run ID:154592

提交时间:2026-05-30 17:20:16

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