Write a dart program to print the output of multiplication of three numbers which will be entered by the user
Code:
import 'dart:io';
void main() {
  print('Input first Number : ');
  int a = int.parse(stdin.readLineSync());
  print('Input Second Number : ');
  int b = int.parse(stdin.readLineSync());
  print('Input Third Number : ');
  int c = int.parse(stdin.readLineSync());
  int result = a * b * c;
  print('Multiplication of three numbers : $result');
}
Output:
Comments
Post a Comment