1--4

来源:互联网 发布:手机短信接收软件 编辑:程序博客网 时间:2024/06/03 00:16
 

#include<iostream.h>
int main()
{
   int a,b,c;
   cout<<"Enter two numbers:";
   cin>>a>>b;
   c=a*b;
   cout<<"a*b="<<c<<endl;
  

return 0;


}

原创粉丝点击