タイトル: if文
SEOタイトル: 【C++】if文の使い方
実装例
|
#include <stdio.h> int main(void){ if(1==2) { } else if(2!=3) { } else { } } |
出力結果
|
2!=3 |