elseif 413 B

123456789101112131415161718192021222324252627
  1. void test(int a) {
  2. if(a == 1) {
  3. print 10;
  4. } else if(a == 1) {
  5. print 100;
  6. } else if(a == 2) {
  7. print 20;
  8. } else if(a == 3) {
  9. print 30;
  10. } else if(a == 2) {
  11. print 200;
  12. } else if(a == 4) {
  13. print 40;
  14. } else {
  15. print 50;
  16. }
  17. }
  18. void main() {
  19. test(0);
  20. test(1);
  21. test(2);
  22. test(3);
  23. test(4);
  24. test(5);
  25. test(6);
  26. }