自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

翻译 程序员也是一种方向

在这边培训已经半个月了,但是gan

2014-07-28 23:46:45 230

翻译 心情有点糟

c语言的课程昨天结束了,今天开始讲oc.但是这个oc的老师

2014-07-23 23:24:56 245

翻译 约瑟夫问题算法

int a[13] = {0};    int count = 0;    int i = 0;    int p = 0;    while (i 13) {        if (0 == a[i]) {            count++;        }        if (3 == count) {     

2014-07-21 12:33:58 342

翻译 仿ATM取款机

#include #include "ATMOperate.h"int cards[5] = {10001, 10002, 10003, 10004, 10005};int pwd[5] = {111111, 222222, 333333, 444444, 555555};int money[5] = {10000, 200, 5000, 1000, 600};int

2014-07-19 13:18:55 1177

翻译 索引数组冒泡方法

int a[] = {3,5, 6, 1, 2, 4};    int count = sizeof(a) /sizeof(*(a));    int b[count];    for (int i =0; i         *(b + i) = i;    }    for (int i =0; i 1; i++) {

2014-07-18 13:11:10 358

翻译 正序输出一个正整数

int countOfInt(int n){    if (0 == n) {        return 1;    }    int count = 0;    while (n > 0) {        n /= 10;        count++;    }    return count;}

2014-07-17 13:38:55 744

翻译 插入排序

int array[] = {5, 4, 3, 2, 1, 6};//    int count = sizeof(array) / sizeof(array[0]);//    for (int i = 1; i //        int j = i;//        int temp = array[j];//        while (j > 0

2014-07-17 13:27:28 211

原创 折半查找

int a[] = {1, 2, 3, 4, 5, 6, 7, 8, 9};//    int count = sizeof(a) / sizeof(a[0]);//    int left = 0, right = count - 1;//    int mid = 0;//    int x= 0;//    scanf("%d", &x);//

2014-07-16 13:29:45 281

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除