実習

540 ワード

入力距離nとその単位sをmmに変換して出力する
入力する距離の単位は3種類あります:キロメートル、mとcm、各単位は変換することができます:
1km = 1000m
1m = 100cm
1cm = 10mm
void main() {
  print(exam(1, 'km'));
  print(exam(54, 'km'));
  print(exam(2, 'cm'));
  print(exam(12, 'm'));
}

int exam(int n, String s) {
  int result = 0;

  if (s == 'km') {
    result = n * 1000000;
  } else if (s == 'm') {
    result = n * 1000;
  } else if (s == 'cm') {
    return n * 10;
  }

  return result;
}