怎样改??
谁能帮我?我会编写下三角的九九乘法表的程序,但不知道怎样编写上三角的九九乘法表的程序,谁会的,帮帮我这个菜鸟好吗?
编了一个,不知道是不是你想要的 #include <iostream.h> #include<iomanip.h>
void main() { int a[9][9]; int i,j,t,k; t=1; for (i=0;i<9;i++) { k=1; for(j=0;j<9;j++) { if(i>j) { cout<<" "; } else { cout<<setw(3)<<t*k; } k++; } cout<<endl; t++; } }