将99乘法表的结果输出到一个文件内保存(文件这块就没听。。。现在郁闷了。帮下忙)
// 99chengfabiao.cpp : Defines the entry point for the console application.
// 文件作用:将99乘法表的结果输出到一个文件内保存
#include "stdafx.h"
#include "iostream.h"
main()
{
int x,y;
for(x=1;x<=9;x++)
for(y=1;y<=9;y++)
cout<<x<<"*"<<y<<"="<<x*y<<endl;
return 0;
}