钻石图形
在纸上写的“钻石图形”,虽然高手门看起来会觉得很幼稚……
#include <stdio.h>
main(){
    int i,j,l;
    int n=0,max=7,num=(max+1)/2;
    char k='*';
    for(i=0;i<max;i++){
        if(i<(max+1)/2){
            n++;
            num++;
        }else{
            n--;
            num--;
        };
        for(l=1;l<num-(2*n-1);l++){
            printf(" ");
        };
        for(j=0;j<2*n-1;j++){
            printf("%c",k);
        };
        printf("\n");
    };
};
[2004-12-15 17:50]

{CommentAuthor} [{CommentTime}]  
{CommentContent}