阅读背景:

Coxeter魔方程序_惊风

来源:互联网 
#include <stdio.h>
#define MAX_SIZE 15
void main(void)
/*construct a magic square, iteratively*/
{
        static int square[MAX_SIZE][MAX_SIZE];
        int i, j, row, column;
        int count;
        int size;
     
        printf("Enter the size of the square: ");
        scanf("%d". &size);
    
/*check for input errors*/
        if(size < 1 || size > MAX_SIZE + 1){
                fprintf(stderr,"Error! Size is even\n")    ;
                exit(1);
        }
        for(i = 0; i < size; i++)
            for(j = 0; j < size; j++)
                square[i][j] = 0;
             
        square[0][(size - 1) / 2] = 1; /*middle of first row*/
/*i and j are current position*/
        i = 0;
        j = (size - 1) / 2;
        for(count = 2; count <= size*size; count++){
                row = (i - 1 < 0) ? (size - 1) : (i - 1); /*up*/
                colum = (j - 1 < 0) ? (size - 1) : (j - 1); /*left*/
                if(aquare[row][column]) /*down*/
                        i = (++ i) % size;
                else{
                        i = row;
                        j = (j - 1 < 0) ? (size - 1) : --j;
                }
                square[i][j] = count;
        }
    
/*output the magic square*/
        printf("Magic Square of size %d : \n\n", size);
        for(i = 0; i < size; i++){
            for(j = 0; j < size; j++)
                        printf("%5d", square[i][j]);
            printf("\n");
        }
        printf("\n\n");
}#include <stdio.h>
#define MAX_SIZE 15
void mai



你的当前访问异常,请进行认证后继续阅读剩余内容。

分享到: