我正在尝试构建尺寸为N * N的hadamard矩阵,然后将其打印出来。代码编译,但是当我运行它时,它甚至没有到达要求N输入的部分。有什么想法吗?
#include <stdio.h>
void main(void) {
int i, N;
scanf("Input N value: %d", &N);
char **h = (char**) calloc(N, sizeof(char*));
for ( i = 0; i < N; i++ ) {
h[i] = (char*) calloc(N, sizeof(char));
}
int ii, xx, yy;
h[0][0]='1';
for(ii=2; ii<=N; ii*=2) {
//Top right quadrant.
for(xx=0; xx<(ii/2); ++xx) {
for(yy=(ii/2); yy<ii; ++yy){
h[xx][yy]=h[xx]yy-(ii/2)];
}
}
//Bottom left quadrant.
for(yy=0; yy<(ii/2); ++yy) {
for(xx=(ii/2); xx<ii; ++xx) {
h[xx][yy]=h[xx-(ii/2)][yy];
}
}
//Bottom right quadrant, inverse of other quadrants.
for(xx=(ii/2); xx<ii; ++xx) {
for(yy=(ii/2); yy<ii; ++yy) {
h[xx][yy]=h[xx-(ii/2)][yy-(ii/2)];
if(h[xx][yy]=='1') {
h[xx][yy]='0';
}
else {
h[xx][yy]='1';
}
}
}
}
//Printing matrix.
for(xx=0; xx<N; ++xx) {
for(yy=0; yy<N; ++yy) {
printf("%c",h[xx][yy]);
}
printf("\n");
}
}
答案 0 :(得分:4)
scanf
不会发出"Input N value: "
等提示消息
documentation of scanf
中没有任何内容表明它确实存在。
相反,你想:
printf("Input N value: ");
scanf("%d", &N);
答案 1 :(得分:2)
scanf
不打印该字符串,仅用于检查输入的格式。
尝试:
printf("Input N value: ");
scanf("%d", &N);
答案 2 :(得分:2)
您需要将scanf和评论分开
例如
printf("Enter a file name: ");
scanf("%s", str);