[此贴子已经被作者于2007-6-13 17:02:37编辑过]
#include<stdio.h>main(){ int i,j; for(i=1;i<=11;i=i+2) { for(j=1;j<=i;j++) { printf("*"); } printf("\n"); }}