第六节 练习7
程序员文章站
2022-04-04 11:11:09
...
#include<iostream>
#include<iomanip>
#include<cstdio>
#include<cmath>
using namespace std;
#define PI 3.14
int main()
{
long a,b;
long long c;
cout << "输入:";
cin >> a >> b;
c = a * b;
cout << c;
return 0;
}
结果:
上一篇: 第五节 练习3
下一篇: 【LeetCode】78. 子集