C++乘法口诀

    技术2026-01-02  1

    #include<iostream> using namespace std; int main(){ int i; int j; for(i = 1; i <= 9; i++){ for(j = 1; j <= i; j++){ cout << j << "*" << i << "=" << i * j << " "; } cout << "\n" ; } return 0; }

    Processed: 0.009, SQL: 9