提交时间:2025-04-02 21:00:37

运行 ID: 315756

#include<iostream> using namespace std; int main(){ cout<<"1 * 1 = 1 1 * 3 = 3 1 * 5 = 5 1 * 7 = 7 1 * 9 = 9"<<endl; cout<<"3 * 3 = 9 3 * 5 = 15 3 * 7 = 21 3 * 9 = 27"<<endl; cout<<"5 * 5 = 25 5 * 7 = 35 5 * 9 = 45"<<endl; cout<<"7 * 7 = 49 7 * 9 = 63"<<endl; cout<<"9 * 9 = 81"<<endl; return 0; }