#include <iostream> int main() { std::cout << "please input two numbers:" << std::endl; int v1 = 0, v2 = 0; std::cin >> v1 >> v2; std::cout << "The product of two numbers is" << v1 * v2 << std::endl; return 0; }
原文:https://www.cnblogs.com/11ys/p/14592890.html