码迷,mamicode.com
首页 >  
搜索关键字:for until while    ( 29426个结果
20140429
1、单链表循环体用while(p->next!=NULL)而不用while(p!=NULL)的原因 node *Find_MidNode(node *head){ if(head->next==NULL||head->next->next==NULL) return head->next; node...
分类:其他好文   时间:2014-07-22 23:11:15    阅读次数:374
hdu 1005 数论 循环
给定 ab 与飞 f1 f2 求f(n) = (A * f(n - 1) + B * f(n - 2)) mod 7.分析:1 因为mod7 0using namespace std;int main(){ int a,b,n; int f[1005]; while(cin>>a>...
分类:其他好文   时间:2014-07-22 23:06:34    阅读次数:391
hdu 1211
这题就是 要你找出一个ASCII 的值x使得 : x^e%n==num(当前输入的数,e条件已给出)zsd:1: ASCII0-255可以枚举2: =a^11 11=1011int pow2( int a, int b ){ int r = 1, base = a; while( b...
分类:其他好文   时间:2014-05-01 16:22:43    阅读次数:326
windows 程序的本体与操作系统之间的关系
1 WinMain(hInst,hPrev,……) 2 { 3 MSG msg; 4 RegisterClass(……); 5 CreateWindow(……); 6 ShowWindow(……); 7 UpdateWindow(……); 8 while(GetMessage(……)) 9 {10....
分类:Windows程序   时间:2014-05-01 12:49:00    阅读次数:498
走进C标准库(6)——"string.h"中函数的实现memchr
我写的memchr:1 void *memchr(const void *buf, char ch, unsigned count){2 unsigned int cnt = 0;3 while(*(buf++) != ch && cnt count)5 ret...
分类:其他好文   时间:2014-05-01 00:50:10    阅读次数:306
输入与enter
#includeusing namespace std;int main(){ char a,b,c; while(scanf("%c%c%c",&a,&b,&c)!=EOF) { getchar(); cout<<a<<b<<c<<endl; } retur...
分类:其他好文   时间:2014-04-30 14:00:36    阅读次数:346
C#常见算法题目
//冒泡排序publicclassbubblesorter{publicvoidsort(int[]list){inti,j,temp;booldone=false;j=1;while((jlist[i+1]){done=false;temp=list[i];list[i]=list[i+1];li...
分类:其他好文   时间:2014-04-29 17:21:45    阅读次数:429
九的余数
#include#include#include#include #includeusing namespace std;char c[1000005];int main(int argc, char* argv[]){ int n; scanf("%d", &n); while(n--) { .....
分类:其他好文   时间:2014-04-29 16:31:46    阅读次数:286
如何终结服务器进程
windows下面可以主线程while loop接受input;但是觉得很丑。 linux没办法这样,可以用注册信号的办法。实现起来也不难: #include "stdio.h" #include "unistd.h" #include "signal.h" #include "error.h" volatile bool isStop = false; static void handl...
分类:其他好文   时间:2014-04-29 13:42:21    阅读次数:418
成绩转换
#includeusing namespace std;int main(){ int N; //测试数据组数 cin>>N; while(N--) { int M; //百分制成绩 cin>>M; int a=M/10; ...
分类:其他好文   时间:2014-04-29 09:38:47    阅读次数:409
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!