#include <iostream> using namespace std; int main(int argc, char** argv) { int a = 1; for(int c = 1;c<10;c++){ for(int d = 0;d<9;d++){ cout<<a+d<<"x"<<c<<"="<<(a+d)*c<<"/t"; if((a+d)==c){ cout<<endl; break; } } } return 0; }
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/288880.html