#include<iostream>using namespace std;int main(){ int x; int y; int z; int result; cout<<"input three numbers:\n"; cin>>x>>y>>z; result=x*y*z; cout<<"The product is "<<result<<endl; return 0;}
Powered by: C++博客 Copyright © hoshelly