1 solutions

  • 0
    @ 2025-7-12 16:22:34

    #include using namespace std;

    int main() { for (int i = 1; i <= 9; i++) { for (int j = 1; j <= i; j++) { if (i * j < 10) cout << i << "*" << j << "= " << j i << " "; else cout << i << "" << j << "=" << j *i << " "; } cout << endl; } return 0; }

    • 1

    Information

    ID
    250
    Time
    1000ms
    Memory
    64MiB
    Difficulty
    1
    Tags
    # Submissions
    52
    Accepted
    38
    Uploaded By