招聘:程序编程员

招聘:程序编程员,数名。 工作地点,只要有网络的地方可以, 可以网上兼职,待遇可以加QQ 277873681
xiao_2_ 发布于 2013-10-05 14:19 | 阅读 1327 次 | 评论 1 条

求发到571661351 邮箱我是刚学编程的不会 求解

任意输入三角形三边长 编程判断是否可以构成一个三角形如可以输出面积否则提示不能,已经构成三角形的条件为 任意两边之和大于第三遍
wanglei123 发布于 2013-09-28 20:03 | 阅读 1001 次 | 评论 1 条

编程

任意输入三角形三边长 编程判断是否可以构成一个三角形如可以输出面积否则提示不能,已经构成三角形的条件为 任意两边之和大于第三bian
wanglei123 发布于 2013-09-28 19:55 | 阅读 899 次 | 评论 0 条

求写一个注册码软件

求写一个注册码软件 发到875991857@qq.com
qq875991857 发布于 2013-09-27 23:30 | 阅读 1256 次 | 评论 0 条

c languge

#include<stdio.h> #include<malloc.h> #include<stdlib.h> typedef struct node { int date; struct node * next; } *PNODE; PNODE ListInit(); void ListInsert(PNODE,int &amp;,int &amp;); void ListTraverse(PNODE); int main(void) { int a[]={ 2,6,3,4,8,9,45 ...
hkcmd 发布于 2013-09-25 21:32 | 阅读 1837 次 | 评论 0 条

控制台—贪吃蛇

#include<stdio.h> #include<conio.h> #include<stdlib.h> #include<windows.h> #include<time.h> #define MAX 3200 #define LEN sizeof(Snake) typedef unsigned char uchar; //------------------------ typedef struct snake{ char x; char y; struct snake *nex...
时光易逝wh 发布于 2013-09-20 19:30 | 阅读 2526 次 | 评论 4 条

二分法查找

//数据结构之二分法---适用于有序线性(顺序存储结构)表(其思想类似于在英语字典中查找一个单词) #include<stdio.h> void main() { int half_search(int*,int,int); //函数声明 int t,count; int a[]={1,4,6,9,28,56,80,89,99,104,110,123,135,150}; //一个预设置的有序线性表,下面用二分法查找28的下标 count=sizeof(a)/sizeof(int); //获得数组中元素的个数 ...
时光易逝wh 发布于 2013-09-20 19:20 | 阅读 1785 次 | 评论 0 条

C语言难点剖析

//指针复习 //C语言中最难区别的形式: //int (*t)[4]定义指向一维数组的指针t,它的基类型是4*int,(定义式不能用运算式(即*:多维降维运算符 []:多维变址降维运算符 &amp;:多维升维运算符)去理解,可以将它作为一种特殊规定) //注意:数组指针和指针数组的区别:int (*a)[ ]表示定义一个数组指针,圆括号的优先级最高,所以前提是指针,也就是指向数组的指针 //int *a[ ]表示定义一个指针数组,前提是数组,也就是由指针组成的数组 //同时注意函数指针和指针函数:int (*p)(int x)表示定义一个函数指针,前提是指针,也就是指向函数的...
时光易逝wh 发布于 2013-09-20 19:17 | 阅读 1893 次 | 评论 2 条

异或运算加密与解密练习

根据 a=b^c 相互关系。 #include <stdio.h> #include <stdlib.h> #include <string.h> int main() { int i,j,len,len_one; char one[10000],two[10000];//one[]为密钥,two[]为明文 printf("请输入明文:"); gets(two); printf("请输入密钥:"); gets(one); len_one=strlen(one); len=strlen(two); f...
qunxingw 发布于 2013-09-19 18:40 | 阅读 2515 次 | 评论 0 条

求模板

项目可行性研究报告怎么写啊?
love学习 发布于 2013-09-19 16:12 | 阅读 824 次 | 评论 0 条

线性表顺序表的插入

不知道怎样用c++类模板写顺序表的插入,但是我一种方法 #include "iostream.h" #define MAX 100 typedef int ElemType; //顺序表元素的数据类型 //顺序表的存储结构 typedef struct STable { ElemType base[MAX]; //顺序表的存储空间 int length; //顺序表的长度 }STable; //在顺序表st的index位置插入值为data的元素,返回插入成功与否的标志 bool AddAt(STable *st, int index, ElemType...
修越魔芋 发布于 2013-09-14 19:09 | 阅读 722 次 | 评论 0 条

好奇的心

怀着一股好奇的心,进入C++的高科技殿堂!
二天眼 发布于 2013-09-06 10:54 | 阅读 1193 次 | 评论 1 条

读圣经学英语

If you think you are so great, try walk on the water. If Satan mentioned about your past, remind him his future. You are not lucky, you are blessed. If you really want to live, you have to die thoroughly first. Opportunity might knock only once, yet ...
静夜思 发布于 2013-09-04 13:33 | 阅读 3437 次 | 评论 0 条

冒泡排序、快速排序、插入排序、选择排序算法

#include<stdio.h> #include<stdlib.h> #define LEN sizeof(arr)/sizeof(arr[0]) void swap(int *p , int *q) { int temp = *p; *p = *q; *q = temp; } void arr_print(int *arr, int len) { int i; for (i=0; i<len; i++) printf("%d ",arr[i]); printf("...
米兰的大铁匠 发布于 2013-09-02 09:05 | 阅读 1823 次 | 评论 2 条

关于字符串数组求运算结果(数据结构与链表)

第一步.h文件 typedef struct node { int data; struct node* prev; struct node* next; } Node; typedef struct stack { struct node* head; } Stack; void stack_init(Stack* stack); void stack_push(Stack* stack, int data); int stack_pop(Stack* stack); int stack_top(Sta...
米兰的大铁匠 发布于 2013-08-30 16:37 | 阅读 1453 次 | 评论 0 条

10进制转换其他进制

#include <stdio.h> #include <stdlib.h> void output(int a,int n)//10进制转换 其他进制。 { char s[16]={"0123456789ABCDEF"}; if(a/n==0) { printf("%c",s[a%n]); return; } output(a/n,n); printf("%c",s[a%n]); } int main(int argc, char *argv[]) { i...
qunxingw 发布于 2013-08-30 12:27 | 阅读 2146 次 | 评论 0 条

我错在哪里?

各位大家好。很冒昧地“闯”入这个“高科技”的殿堂。自我介绍一下,名字是“空巢臾”的意思,退休多年,子女在外,一个人赋闲在家,为防老年痴呆,在做女儿的“数据库”习题,VFP6.0的。 计算:5!-3!+7! 我在网上查到了这个题目,很简单,但不知自己的错在哪里。还望“大家们”不吝赐教。不敢浪费你们时间,见笑了。顺便问一下,我应该在哪里求教这些问题? @ 3,10 SAY "输入阶乘个数:" GET GS DEFAULT SPACE(10)  ↓ READ  ↓ GS=ALLTRIM(GS)  ↓ FOR I...
孔超寿 发布于 2013-08-27 17:02 | 阅读 1264 次 | 评论 4 条

新的开始

新的开始,我又踏上了不一样路,尽管困难丛丛,我还是依然默默的走在属于自己的路上!
北辰风 发布于 2013-08-25 18:00 | 阅读 865 次 | 评论 0 条

借鉴“皇后之美”

八皇后是经典之作,近再读,想起一老题(http://bbs.bccn.net/thread-382842-1-1.html),借用此法。与B 版有异曲同工之妙。 一个排序问题求解 全班同学排成 6 排, A 、 B 、 C 、 D 、 E 、 F 等 6 人分别站在第 1 排到第 6 排 • 用 6 个 int 变量表示 A — F 的位置 – A 不在第 1 排 à a != 1 A 与 B 前后相邻 (a == b + 1) || (a == b - 1) C 在 D 前面 c == d - 1 E 在 B 的前两排 e == b...
qunxingw 发布于 2013-08-24 11:03 | 阅读 2396 次 | 评论 0 条

urllib2在不发送数据的情况下发送POST请求

import urllib2 request = urllib2.Request('http://127.0.0.1:8000/', data='') print urllib2.urlopen(request).read() 第二行若没有data参数则为GET请求
静夜思 发布于 2013-08-23 16:43 | 阅读 2319 次 | 评论 0 条