摘要: sum.exe是一个求和函数,在命令行下输入sum a b,输出a和b的和,其代码如下://sum.cpp #include <iostream> using namespace std; int main(int argc,char *argv[]) { if(argc!=3){ cout<<"you should use three arguments"<<endl; return -1; } cout<<"The sum of "<<argv[1]<<" and &q 阅读全文
posted @ 2012-11-12 23:18 seventhsaint 阅读(934) 评论(0) 推荐(0) 编辑
摘要: atof 是ascII to float的缩写,它将ascII字符串转换为相应的单精度浮点数,比如传入"1.234",经过处理后就返回float类型的数1.234 。类似的还有atoi 、atol、itoa、ftoa等等。示例程序,主函数使用两个值作为实参,并输出和。#include <iostream> using namespace std; int main(int argc,char *argv[]) { if(argc!=3){ cout<<"you should use three arguments"<< 阅读全文
posted @ 2012-11-12 21:56 seventhsaint 阅读(680) 评论(0) 推荐(0) 编辑