因为痛,所以叫青春

我有一个梦想:穷屌丝变身富屌丝

2012年7月19日

math.h中的函数

摘要: View Code 数学函数库,一些数学计算的公式的具体实现是放在math.h里,具体有: 1、 三角函数 double sin (double);正弦 double cos (double);余弦 double tan (double);正切 2 、反三角函数 double a... 阅读全文

posted @ 2012-07-19 15:18 Nice! 阅读(531) 评论(0) 推荐(0) 编辑
c语言快速排序的库函数整理

摘要: 这些库函数都是在平时编程中经常调用的快排函数View Code 以下所介绍的所有排序都是从小到大排序快速排序的库函数都包含在头文件名为中对int型数组排序int num[100];int cmp(const void *a,const void *b){ return *(int *)a-*(... 阅读全文

posted @ 2012-07-19 11:17 Nice! 阅读(3111) 评论(0) 推荐(1) 编辑

2012年7月18日

uva621 Secret Research

摘要: 超级水题View Code 1 #include 2 #include 3 int main() 4 { 5 int T; 6 char st[202]; 7 scanf("%d",&T); 8 getchar(); 9 while(T--)10 {... 阅读全文

posted @ 2012-07-18 20:51 Nice! 阅读(206) 评论(0) 推荐(0) 编辑
uva10161 Ant on a Chessboard

摘要: 有点小规律,想出来就挺简单的!!View Code 1 #include 2 #include 3 int main() 4 { 5 int n, m; 6 while(scanf("%d",&n) && n) 7 { 8 m = sqrt(n-1); 9 ... 阅读全文

posted @ 2012-07-18 19:42 Nice! 阅读(176) 评论(0) 推荐(0) 编辑
uva113 - Power of Cryptography

摘要: 真简单,一个数学函数调用就可以解决了View Code 1 #include2 #include3 int main()4 {5 double a, b;6 while(scanf("%lf%lf",&a,&b) != EOF)7 printf("%.0lf\n",p... 阅读全文

posted @ 2012-07-18 16:56 Nice! 阅读(134) 评论(0) 推荐(0) 编辑
uva10785 The Mad Numerologist

摘要: AC代码,这不是我自己写出来的,而是仿出来的,因为我不看别人的代码,我实在是猜不出这个题目的意思 是什么,完全不懂那些乱七八糟的英文。猜题太难了!!!举步维艰不过,这个题目理解出来之后,代码实在是太简单了,没什么算法在里面View Code #include#include#includechar ... 阅读全文

posted @ 2012-07-18 16:27 Nice! 阅读(272) 评论(0) 推荐(0) 编辑
uva755 - 487--3279

摘要: 哎,这两天做那道题都FAIL,真是郁闷,强烈的打击了我的积极性,终于有一道AC了,花了一早晨的时间,只是这道题出错的地方实在是太离谱,真是不应该啊,同一个地方又摔倒了一次View Code #include#include#includeint b[]={2,2,2,3,3,3,4,4,4,5,5,... 阅读全文

posted @ 2012-07-18 14:30 Nice! 阅读(187) 评论(0) 推荐(0) 编辑

2012年7月17日

uva400 - Unix ls

摘要: 郁闷啊View Code #include#include#includeint cmp(const void *a,const void *b){ return (strcmp((char*)a,(char*)b));}int main(){ char st[103][90]; ... 阅读全文

posted @ 2012-07-17 09:21 Nice! 阅读(264) 评论(0) 推荐(0) 编辑

2012年7月16日

uva 156 Ananagrams

摘要: 一次就AC了,而且做道题目用时极少,状态来了,挡都挡不住,哈哈View Code #include#include#include#includeint cmp(const void *a,const void *b){ return *(char *)a - *(char *)b;}int ... 阅读全文

posted @ 2012-07-16 20:06 Nice! 阅读(209) 评论(0) 推荐(0) 编辑
uva120 Stacks of Flapjacks

摘要: 郁闷View Code #include#includeint cmp(const void *a,const void *b){ return *(int *)a - *(int *)b;}int main(){ int a[102] = {0}, b[102], top = 0; ... 阅读全文

posted @ 2012-07-16 15:41 Nice! 阅读(271) 评论(0) 推荐(0) 编辑