3 条题解

  • 2
    @ 2022-8-19 19:47:46
    using namespace std;
    
    int main(){
    	
    cout<<"1*1=1"<<endl;
    cout<<"1*2=2 2*2=4"<<endl;
    cout<<"1*3=3 2*3=6 3*3=9"<<endl;
    cout<<"1*4=4 2*4=8 3*4=12 4*4=16"<<endl;
    cout<<"1*5=5 2*5=10 3*5=15 4*5=20 5*5=25"<<endl;
    cout<<"1*6=6 2*6=12 3*6=18 4*6=24 5*6=30 6*6=36"<<endl;
    cout<<"1*7=7 2*7=14 3*7=21 4*7=28 5*7=35 6*7=42 7*7=49"<<endl;
    cout<<"1*8=8 2*8=16 3*8=24 4*8=32 5*8=40 6*8=48 7*8=56 8*8=64"<<endl;
    cout<<"1*9=9 2*9=18 3*9=27 4*9=36 5*9=45 6*9=54 7*9=63 8*9=72 9*9=81"<<endl;
    }
    
    • 2
      @ 2022-8-19 19:47:23
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	cout<<"1*1=1 "<<endl;
      	cout<<"1*2=2 2*2=4 "<<endl;
      	cout<<"1*3=3 2*3=6 3*3=9 "<<endl;
      	cout<<"1*4=4 2*4=8 3*4=12 4*4=16 "<<endl;
      	cout<<"1*5=5 2*5=10 3*5=15 4*5=20 5*5=25 "<<endl;
      	cout<<"1*6=6 2*6=12 3*6=18 4*6=24 5*6=30 6*6=36 "<<endl;
      	cout<<"1*7=7 2*7=14 3*7=21 4*7=28 5*7=35 6*7=42 7*7=49"<<endl;	
      	cout<<"1*8=8 2*8=16 3*8=24 4*8=32 5*8=40 6*8=48 7*8=56 8*8=64 "<<endl;
      	cout<<"1*9=9 2*9=18 3*9=27 4*9=36 5*9=45 6*9=54 7*9=63 8*9=72 9*9=81";
      return 0;
      }
      
      • 0
        @ 2022-8-21 16:43:09

        #include <bits/stdc++.h> using namespace std;

        int main(){

        printf("1*1=1 \n1*2=2 2*2=4 \n1*3=3 2*3=6 3*3=9 \n1*4=4 2*4=8 3*4=12 4*4=16 \n1*5=5 2*5=10 3*5=15 4*5=20 5*5=25 \n1*6=6 2*6=12 3*6=18 4*6=24 5*6=30 6*6=36 \n1*7=7 2*7=14 3*7=21 4*7=28 5*7=35 6*7=42 7*7=49 \n1*8=8 2*8=16 3*8=24 4*8=32 5*8=40 6*8=48 7*8=56 8*8=64 \n1*9=9 2*9=18 3*9=27 4*9=36 5*9=45 6*9=54 7*9=63 8*9=72 9*9=81");
        

        }

        • @ 2022-8-21 16:43:27

          压行大师

        • @ 2022-8-21 16:46:34

          #include <bits/stdc++.h>

          using namespace std;int main(){printf("11=1 \n12=2 22=4 \n13=3 23=6 33=9 \n14=4 24=8 34=12 44=16 \n15=5 25=10 35=15 45=20 55=25 \n16=6 26=12 36=18 46=24 56=30 66=36 \n17=7 27=14 37=21 47=28 57=35 67=42 77=49 \n18=8 28=16 38=24 48=32 58=40 68=48 78=56 88=64 \n19=9 29=18 39=27 49=36 59=45 69=54 79=63 89=72 9*9=81");}

      • 1

      信息

      ID
      65
      时间
      1000ms
      内存
      256MiB
      难度
      4
      标签
      递交数
      79
      已通过
      34
      上传者