python2 中获取int最大值 import sys i = sys.maxint print i 但是在python3中,报错: AttributeError: module 'sys' has no attribute 'maxint' 看了官网文档后了解python3中没有maxint了,只有maxsize import sys i = sys.maxsize print(i) 官网说明文档:https://docs.python.org/3.1/whatsnew/3.0.html#i…
// // main.c // Pointer_max_min(return) // // Created by ma c on 15/8/2. // Copyright (c) 2015年 bjsxt. All rights reserved. // 要求:使用返回指针的函数查找10个整数的最大值和最小值. #include <stdio.h> int *Find_max(int *arr,int len); int *Find_min(int *arr,int len); int…