2010年10月9日 星期六

[C++]計算兩數相乘

#include <iostream>
int main(){
int v1;
int v2;
std::cout<<"請輸入兩個值"<<std::endl;
std::cout<<"第一個值:";
std::cin>>v1;
std::cout<<"第二個值:";
std::cin>>v2;
std::cout<<"兩數相乘 " << v1 << "*" << v2 << "=" << v1 * v2 << std::endl;
// std::cout <<"Hello,World" << std::endl;

system("PAUSE");
return 0;

}

沒有留言: