[memo][C言語] if文
備忘録です。
$ vi 02_if.c
------------------------------
#include <stdio.h>
int main(){
int int_sample = 3000;
if (int_sample < 3000){
printf("3000未満\n");
} else if ( int_sample == 3000){
printf("3000丁度\n");
} else {
printf("3000を超える\n");
}
return 0;
}
------------------------------
$ gcc 02_if.c -o 02_if_c
$ ./02_if_c
3000丁度