九九乘法表的各類輸出形式(c++)

完整的九九乘法表ios #include <iostream> using namespace std; #include <iomanip> void main() { int i, j; for(i=1; i<=9; i++) { for(j=1; j<=9; j++) cout<<i<<"*"<<j<<"="<<setw(2)<<i*j<<" "; cout<<endl
相關文章
相關標籤/搜索