在C中打印符号

时间:2016-11-11 16:22:45

标签: c rows symbols

提前感谢您提供的任何帮助。我试图打印" +"基于M和N给出的值的符号(所以如果它是M:3和N:1它将以+++形式出现)但是我对你如何做到这一点绝对空白。代码在C。

编辑:澄清。我不记得我需要做什么来根据给定的值打印电路板。我很清楚,如果我现在运行此代码,它将会显示为空白。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

int main() {
    int N, M;

    printf("N: ");
    scanf("%d",&N);
    printf("M: ");
    scanf("%d",&M);
    printf("\n");

    /* Show a board with N lines and M columns */


    return 0;
}

1 个答案:

答案 0 :(得分:0)

让你入门

for(int i = 0; i < N; i++)
{
    printf("X");
}