fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a,b;
  5. a=2;
  6. b=2;
  7. if (a<b){
  8. printf("bの方が大きいよ!");
  9. } else if (a>b){
  10. printf("aの方が大きいよ!");
  11. } else {
  12. printf("どっちも同じ.....すごいね!");
  13. }
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0.01s 5304KB
stdin
Standard input is empty
stdout
どっちも同じ.....すごいね!