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;
}
標簽: