首页上一页 1 下一页尾页 2 条记录 1/1页
#include <iostream.h>
#include "stdafx.h"
#include <iomanip.h>
#include "stdio.h"
#include "stdlib.h'
void main()
{
int x,y,z;
for(x=1;x<10;x++)
{
for(y=1;y<10;y++)
{
z=x*y;
cout<<x<<"x"<<y<<"="<<z<<"81"
}
cout<<endl;
}
}
于2018-07-22 16:26:36编辑