$ sudo apt-get install build-essential # waiting... $ mkdir cpp $ cd cpp $ vim test.cpp //~ edit test.cpp with vim or other editor like the upcoming lines. #include <iostream> using namespace std; int main() { cout<<"hello, world"<<endl; return 0; } $ g++ test.cpp -o test $ ls test.cpp test $ ./test $ hello, world
abs( )主要用于对求整数的绝对值,在“stdlib.h”(或 <cstdlib>)头文件里面。
而fabs( )主要是求精度要求更高的double ,float 型的绝对值,在<cmath>头文件里。
两者在只#include<cmath>时都可以使用。
sprintf_s()要改为sprintf().