-->
当前位置:首页 > 题库

PROGRAMMING:1-8. Read two integers and output the product

Luz5年前 (2021-05-10)题库393
Write a program to show the product of two integers read as follows.
```
Please enter two integers.
Integer 1:27 (enter)
Integer 2:35 (enter)
Their product is 945.
```
###Input format:
Enter an integer at the prompt and press enter. Example: 27 (enter)
###Output format:
```
Please enter two integers.
Integer 1:
Integer 2:
Their product is 945.
```
###Input example:
```in
twenty-seven
thirty-five
```
###Output example:
```out
Please enter two integers.
Integer 1: integer 2: their product is 945.
```







answer:If there is no answer, please comment