摘要:
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 阅读全文
摘要:
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"<< 阅读全文