LoginSignup
0
0

More than 1 year has passed since last update.

C言語でif文で星を出すだけのプログラム

Posted at

初C言語です。
codeanywhareで作業しました。

test.c
#include <stdio.h>

int score = 101;

int main (void)
{
    printf("[★]\n");

    if(score > 10)
    {
        printf("※\n");
        printf("⭐️\n");
        printf("✳︎\n");
    }
}

test.c と同じディレクトリで下記を実行
make test

そして
./testを実行

cabox@test:~/workspace/test$ ./test
[★]
※
⭐️
✳︎
cabox@test:~/workspace/test$ 
int score = 1;

とかにすると最初のほしだけになります。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0