AcWing 605 简单乘积

2021-03-06 07:29

阅读:486

标签:href   print   计算   题解   space   输入格式   cti   绝对值   str   

AcWing 605 简单乘积

镜像1 http://suo.im/6lq36T
镜像2 http://suo.im/5JOX0d
镜像3 http://suo.im/6d9DO5

打卡链接
原题链接
提交记录

题面

读取两个整数值。
在此之后,计算它们的乘积并将结果存储在名为PROD的变量中。
输出结果如下例所示。

输入格式

共两行,每行包含一个整数。

输出格式

输出格式为“PROD = X”,其中X为乘积结果。
数据范围
输入的两个整数的绝对值均不超过\(10000\)

Input
    3
    9
Output
    PROD = 27

题解

In C++/C

#include 
#include 
using namespace std;
int main(){
    int a,b;
    cin>>a>>b;
    cout

In Python 2

a = input()
b = input()
print "PROD=",a*b

AcWing 605 简单乘积

标签:href   print   计算   题解   space   输入格式   cti   绝对值   str   

原文地址:https://www.cnblogs.com/sweepy/p/acwing605.html

上一篇:flink常用的API

下一篇:C#使用MD5加密


评论


亲,登录后才可以留言!