scratch第四期链接
直接往下看吧:
链接:https://pan.baidu.com/s/1mpaPGC7plrZCqRceP-IlxQ
提取码:6mn8

附赠99乘法表c++代码!
#include<iostream>
int any(int a=1,int b=0) ;
using namespace std;
int main(void)
{
//int b;
any(1,1);
cout<<"press 1 finish the c++ "<<endl;
int c;
cin>>c;
if(c=1)
{
cout<<"thanks your piaying!";
exit(0);
}
else cout<<"sorry,time up!";
}
any(int a,int b)
{
do
{
for(a=1;a<=9;a++)
{
cout<<a<<"*"<<b<<"="<<a*b<<" ";
}
b++;
cout<<" "<<endl;
}
while(b<=9);
return(a);
return 0;
}