题目描述
下面一段程序的功能是:输入两个数,输出两个数的和。
#include<iostream>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b;
c = a + b; //赋值语句,把a+b的结果赋值给c
cout << c << endl;
return 0;
}
你需要实现,输入两个数,输出这两个数的乘积
输入格式输入两个整数 a, b
输出格式输出一个整数,表示 a, b 的乘积
样例
4 5
20
数据范围与提示
分类标签
[语法基础]
C++题解代码
#include <bits/stdc++.h>
using namespace std;
int a;
int b;
// The main procedure
int main() {
cin>>a;
cin>>b;
cout<<(a*b);
return 0;
}
Blockly题解代码图片