C++输出九九乘法表

/*打印九九乘法表*/
#include<iostream>
using namespace std;
int main(){
	int i,j;
	for(i=1;i<10;i++){
		for(j=1;j<10;j++){
			cout<<i<<"×"<<j<<"="<<i*j<<"\t"; 
		}
		cout<<"\n"; 
	}
	return 0;
} 

posted @ 2013-04-13 23:44  千手宇智波  阅读(825)  评论(0编辑  收藏  举报