首页 > 其他 > 详细

g++无法使用数学库函数,abs() 函数无法找到

时间:2014-07-03 16:52:40      阅读:693      评论:0      收藏:0      [点我收藏+]

http://blog.csdn.net/pipisorry/article/details/36633451

同样的一个源码, 如果保存成c文件, 用gcc编译可以通过和使用

如果用g++编译无法通过. 原因是abs() 函数无法找到? 

1992829.101983/Main.cc: In function ‘int main()’:
1992829.101983/Main.cc:11:32: error: ‘abs’ was not declared in this scope
#include <stdio.h>
#include <math.h>
int main(){
	int count;
	int abs_x,abs_y;
	char begin[3], end[3];
	scanf("%d",&count);
	while(count--){
		scanf("%s %s",begin,end);
		abs_x = abs(begin[0] - end[0]);
		abs_y = abs(begin[1] - end[1]);
		if( !abs_x && !abs_y )
			printf("0 0 0 0\n");
		else{			
			printf("%d ",abs_x > abs_y? abs_x:abs_y );
			if( !(abs_x) || !(abs_y) || ((abs_x == abs_y)))
				printf("1 ");
			else
				printf("2 ");
			if( !(abs_x) || !(abs_y) )
				printf("1 ");
			else
				printf("2 ");
			if( (abs_x + abs_y) % 2)
				printf("Inf\n");
			else if( (abs_x == abs_y) )
				printf("1\n");
			else
				printf("2\n");
		}
	}
	return 0;
}
solution:需要#include <stdlib.h>
ref:
http://blog.csdn.net/pipisorry/article/details/36633451
http://bbs.csdn.net/topics/100038672

g++无法使用数学库函数,abs() 函数无法找到,布布扣,bubuko.com

g++无法使用数学库函数,abs() 函数无法找到

原文:http://blog.csdn.net/pipisorry/article/details/36633451

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!