码迷,mamicode.com
首页 >  
搜索关键字:int    ( 143001个结果
android本地分享
分享的方法: private void? nativeShare() { Intent intent = new Intent(Intent.ACTION_SEND); intent.setType("text/plain"); intent.putExtra(Intent.EXTRA_TEXT, "分享内容。。。。。"); startActivity(Int...
分类:移动开发   时间:2015-05-26 19:20:42    阅读次数:152
Print Star
int?layer?=?5; ????for?(int?k?=?layer?;?k?>0?;k--) ????{ ??????? ???????? ????????for?(?int?i?=?0?;?i?<k?;i++) ????????{ ?????????...
分类:其他好文   时间:2015-05-26 19:17:42    阅读次数:104
截取带括号和逗号的字符串
//获取整个串的长度 int ruleStrLength=ruleStr.length(); //获取"("之前串的长度 int leftParen = ruleStr.indexOf("("); int rightParen = ruleStrLength-1; //将"("左边的字符串截取下来放在rule中 String rule = ruleStr.substr...
分类:其他好文   时间:2015-05-26 18:59:31    阅读次数:331
zoj 3870 Team Formation 位运算
//给n个数,找有多少队的两个数的异或值大于它们自己 //对于两个数中小的那个数的最高位在大的数中该位为0 //那么两个数异或所得的数比两个数大 //否则,这个数比大的数小 #include #include #include #include using namespace std ; const int maxn = 100010; long long  map[40]; ...
分类:其他好文   时间:2015-05-26 18:51:43    阅读次数:95
最大公约数和最小公倍数
求最小公倍数算法最小公倍数=两整数的乘积÷最大公约数求最大公约数算法辗转相除法有两整数a和b: ① a%b得余数c ② 若c=0,则b即为两数的最大公约数 ③ 若c≠0,则a=b,b=c,再回去执行①#include #include using namespace std;const float EPS = 0.00001; int bei(int a,...
分类:其他好文   时间:2015-05-26 18:48:18    阅读次数:221
(转)C# Enum,Int,String的互相转换 枚举转换
转发的,找不到原文地址了.
分类:编程语言   时间:2015-05-26 18:38:37    阅读次数:159
JDialog居中
int windowWidth = this.getWidth(); //获得窗口宽int windowHeight = this.getHeight(); //获得窗口高Toolkit kit = Toolkit.getDefaultToolkit(); //定义工具包Dimension scre...
分类:其他好文   时间:2015-05-26 18:37:45    阅读次数:186
c++ primer plus 习题答案(4)
p333.3 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 class Golf{ 8 private: 9 static const int Len = 40;10 char full...
分类:编程语言   时间:2015-05-26 18:35:58    阅读次数:225
hive复杂类型访问操作
复杂类型访问操作1. array类型访问: A[n]语法: A[n]操作类型: A为array类型,n为int类型说明:返回数组A中的第n个变量值。数组的起始下标为0。比如,A是个值为['foo', 'bar']的数组类型,那么A[0]将返回'foo',而A[1]将返回'bar'举例:hive> c...
分类:其他好文   时间:2015-05-26 18:35:51    阅读次数:133
java创建缩略图
void createThumbnail(String filename, int thumbWidth, int thumbHeight, int quality, String outFilename) throws InterruptedException, FileNotFoundExcep...
分类:编程语言   时间:2015-05-26 18:33:44    阅读次数:136
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!