标签:string ctime 乘法口诀 span ring 乘法 i++ names pause
#include<iostream> using namespace std; #include<string> #include<ctime> int main() { //乘法口诀表 for (int j=1; j < 10; j++) { for (int i = 1; i <= j; i++) { cout << i << " * " << j << " = " << i * j << "\t"; } cout << endl; } system("pause"); return 0; }
标签:string ctime 乘法口诀 span ring 乘法 i++ names pause
原文地址:https://www.cnblogs.com/hackerteen/p/12382701.html