123456789101112131415161718192021222324252627 |
- void test(int a) {
- if(a == 1) {
- print 10;
- } else if(a == 1) {
- print 100;
- } else if(a == 2) {
- print 20;
- } else if(a == 3) {
- print 30;
- } else if(a == 2) {
- print 200;
- } else if(a == 4) {
- print 40;
- } else {
- print 50;
- }
- }
- void main() {
- test(0);
- test(1);
- test(2);
- test(3);
- test(4);
- test(5);
- test(6);
- }
|