注册 登录
编程论坛 C++教室

很SB的小问题...

kaneqeqeq 发布于 2007-07-09 11:28, 460 次点击
#include <iostream>

int main() {

int USD ,HKD ;

std :: cout << "Enter the USD you have :" ;

std :: cin >> USD ;

HKD = USD *7.81 ;

std :: cout << "The equivalent HKD is :" ;

std :: cout << HKD ;

return 0 ;

}


幹嘛不可在 VC++ 2005 执行 !? 3Q LZM !
1 回复
#2
Arcticanimal2007-07-09 11:34
上面的代码在VS 2005下可以执行啊 lz...
1