摘要: 题意:a的n方=b,a这个整数与b开n方的值相近,分别向上取整和向下取整,同时n方,b一定介于这两个整数之间,然后比较这两个数与b的距离,取最近的收获:c++的cei和floor函数在c中的向上取整和向下取整函数为:double a;(int)a --向下取整 (int)a+1 ---向上... 阅读全文
posted @ 2015-06-20 14:15 Gabyler 阅读(236) 评论(0) 推荐(0) 编辑
摘要: #include #include #includeint main(){ char str[260]; int len,i,sum; while(gets(str) != NULL && str[0] != '#') { sum=0; len=s... 阅读全文
posted @ 2015-06-20 12:09 Gabyler 阅读(92) 评论(0) 推荐(0) 编辑
摘要: #include #include int T(int n){ int sum=0,i; for(i=1;i<=n;i++) { sum+=i; } return sum;}int main(){ int n,tmp,k,cout=0; sca... 阅读全文
posted @ 2015-06-20 11:36 Gabyler 阅读(120) 评论(0) 推荐(0) 编辑
摘要: #include #include int main(){ int n,count=0; scanf("%d",&n); while(n--) { int tmp; scanf("%d",&tmp); printf("%d ",++c... 阅读全文
posted @ 2015-06-20 11:04 Gabyler 阅读(243) 评论(0) 推荐(0) 编辑