一球从100米高度自由落下,每次落地后反跳回原高度的一半;再落下,求它在第10次落地时,共经过多少米?第10次反弹多高?#include "stdio.h"#include "stdio.h"main(){ float sn=100.0,hn=sn/2; int n; for(n=2;n<……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1601浏览 2702个赞
猴子吃桃问题:猴子第一天摘下若干个桃子,当即吃了一半,还不瘾,又多吃了一个第二天早上又将剩下的桃子吃掉一半,又多吃了一个。以后每天早上都吃了前一天剩下的一半零一个。到第10天早上想再吃时,见只剩下一个桃子了。求第一天共摘了多少。采取逆向思维的方法,从后往前推断#include "stdio.h"#include "con……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2623浏览 768个赞
打印出如下图案(菱形) * *** ************ ***** *** *程序分析:先把图形分成两部分来看待,前四行一个规律,后三行一个规律,利用双重for循环,第一层控制行,第二层控制列。 #include "stdio.h"#include "conio.h"main(){ i……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2876浏览 842个赞
C语言求1+2!+3!+…+20!的和 #include "stdio.h"#include "conio.h"main(){ float n,s=0,t=1; for(n=1;n<=20;n++) { t*=n; s+=t; } printf(&quo……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1281浏览 2949个赞
C语言利用递归方法求5!。#include "stdio.h"#include "conio.h"main(){ int i; int fact(); for(i=0;i<5;i++) printf("\40:%d!=%d\n",i,fact(i)); getc……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2969浏览 455个赞
C语言利用递归函数调用方式,将所输入的5个字符,以相反顺序打印出来#include "stdio.h"#include "conio.h"main(){ int i=5; void palin(int n); printf("\40:"); palin(i); pri……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1792浏览 556个赞
有5个人坐在一起,问第五个人多少岁?他说比第4个人大2岁。问第4个人岁数,他说比第3个人大2岁。问第三个人,又说比第2人大两岁。问第2个人,说比第一个人大两岁。最后问第一个人,他说是10岁。请问第五个人多大?程序分析:利用递归的方法,递归分为回推和递推两个阶段。要想知道第五个人岁数,需知道第四人的岁数,依次类推,推到第一人(10岁),再往回推。#inc……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1672浏览 1559个赞
一个5位数,判断它是不是回文数。即12321是回文数,个位与万位相同,十位与千位相同#include "stdio.h"#include "conio.h"main( ){ long ge,shi,qian,wan,x; scanf("%ld",&x); wan=x/……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2484浏览 2479个赞
vc.net中使用Qt连接SQLServer数据库//1.添加SQL库:"Qt project setting"-->"Qt Modules",在SQL library复选框前打勾.//2.添加头文件#include<QtSql>#include <QtSql/QSqlDatabas……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3084浏览 184个赞
C++用回溯方法做全排列#include<cstring>#include<iostream>#define LEN 10using namespace std;char elem[LEN] = { 'a', 'b', 'c', 'd', &……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2106浏览 907个赞
程序分析:用第一个与最后一个交换#include "stdio.h"#include "conio.h"#define N 5main(){ int a[N]={9,6,5,4,1},i,temp; printf("\n original array:\n"); for(i……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2324浏览 941个赞
利用双重for循环控制输入二维数组,再将a[i][i]累加后输出。#include "stdio.h"#include "conio.h"/* 如果使用的是TC系列编译器则可能需要添加下句 */static void dummyfloat(float *x){ float y; dummyfloat(&am……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2412浏览 2224个赞
请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续判断第二个字母。程序分析:用情况语句比较好,如果第一个字母一样,则判断用情况语句或if语句判断第二个字母#include "stdio.h"#include "conio.h"void main(){ char letter; p……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1799浏览 2902个赞
C++ 实现矩阵相乘#include <iostream>using namespace std;void MatrixMultiplication(double *m1,double *m2,double *m3,int m,int n,int k){ for(int i=0;i<m;i++) { for(int j=……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2891浏览 2739个赞
消息队列是一系列连续排列的消息,保存在内核中,通过消息队列的引用标识符来访问。消息队列与管道很相似,但使用消息队列的好处是对每个消息指定了特定消息类型,接收消息的进程可以请求接收下一条消息,也可以请求接收下一条特定类型的消息。来源:http://blog.csdn.net/muge0913/article/details/7342907#include……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1972浏览 1509个赞
使用动态内存时需要用户自己去申请资源和释放资源。用户可以随时的分配所需空间,根据需要分配空间大小,并在最后释放申请内存。动态内存也存在隐患:在大型的项目当中管理申请的动态内存是很复杂的,以及释放申请的内存有难想起的。在释放动态内存时可能不止一个指针指向了该内存,所以释放的时候是很容易出错的。内存无法释放就会造成内存泄露,这也就是为什么服务器要经常的每个一段时……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1821浏览 2653个赞
Linux 实现了请求页面调度,页面调度是说页面从硬盘按需交换进来,当不再需要的时候交换出去。这样做允许系统中每个进程的虚拟地址空间和实际物理内存的总量再没有直接的联系,因为在硬盘上的交换空间能给进程一个物理内存几乎无限大的错觉。交换对进程来说是透明的,应用程序一般都不需要关心(甚至不需要知道)内核页面调度的行为。然而,在下面两种情况下,应用程序可能像影响系……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1276浏览 414个赞
如果我们把计算机上的操作系统及各种各样的软件看成一系列的有机生命,而不是指令集,那么这就是一个进程的世界,在进程的世界中同样有“道德”和“法制法规”,窥探进程世界,看它的侠肝义胆,风雨江湖路~~~~~linux支持多个进程同时进行,也就是我们常说的现代操作系统中的多道程序设计,所谓同时是linux系统调度各个进程分别占用cpu的时间。由于每个时间片的时间很……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1876浏览 1394个赞
来源:http://blog.csdn.net/muge0913/article/details/7317452#include <sys/types.h>#include <stdio.h>#include <sys/wait.h>void check_exit(int status);main(){ ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1788浏览 1489个赞
linux c 退出进程来源:http://blog.csdn.net/muge0913/article/details/7317580 linux中常用退出函数:#include<stdlib.h>voidexit(int status);intatexit(vo……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2763浏览 496个赞
信号处理是linux程序的一个特色。用信号处理来模拟操作系统的中断功能。要想使用信号处理功能,你要做的就是填写一个信号处理函数即可。来源:http://blog.csdn.net/muge0913/article/details/7317621#include <stdio.h> #include <sys/types.h> ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2612浏览 2081个赞
信号及其简介信号是一种进程通信的方法,他应用于异步事件的处理。信号的实现是一种软中断。它被发送为一个正在运行的进程,已告知进程某个事件发生了。来源:http://blog.csdn.net/muge0913/article/details/7322710 信号及其简介信号是一种进程通信……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2372浏览 1170个赞
C++ 查询硬件与系统配置的API函数 ActivateKeyboardLayout 激活一个新的键盘布局。键盘布局定义了按键在一种物理性键盘上的位置与含义Beep 用于生成简单的声音CharToOem 将一个字串从ANSI字符集转换到OEM字符集ClipCursor 将指针限制到指定区域ConvertDefaultLocale 将一个特殊的地……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3128浏览 1859个赞
要对一个信号进行处理,就需要给出此信号发生时系统所调用的处理函数。可以对一个特定的信号(除去SIGKILL和SIGSTOP信号)注册相应的处理函数。注册某个信号的处理函数后,当进程接收到此信号时,无论进程处于何种状态,就会停下当前的任务去执行此信号的处理函数。来源:http://blog.csdn.net/muge0913/article/details/7……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1268浏览 877个赞
1、有时候不希望在接到信号时就立即停止当前执行,去处理信号,同时也不希望忽略该信号,而是延时一段时间去调用信号处理函数。这种情况是通过阻塞信号实现的。2、信号阻塞和忽略信号的区别。阻塞的概念和忽略信号是不同的。操作系统在信号被进程解除阻塞之前不会讲信号传递出去,被阻塞的信号也不会影响进程的行为,信号只是暂时被阻止传递。当进程忽略一个信号时,信号会被传递出去……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1270浏览 1828个赞
int sigsuspend(const sigset_t *sigmask);此函数用于进程的挂起,sigmask指向一个信号集。当此函数被调用时,sigmask所指向的信号集中的信号将赋值给信号掩码。之后进程挂起。直到进程捕捉到信号,并调用处理函数返回时,函数sigsuspend返回。信号掩码恢复为信号调用前的值,同时将errno设为EINTR。进程结束……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2026浏览 230个赞
来源:http://www.daytimesoftware.com/blog/2007/10/suicidal-code-redux// Based on original code by Daniel Jakult, based on an idea from Brian Cooke.#ifdef BETA // 4 week expirati……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1651浏览 2903个赞
点击提交按钮后显示loading,防止用户重复提交<style>#loading { position:absolute; width:500px; height:50px; top:50%; left:50%; margin: -25px -150px; background-color:#FFFFFF; bo……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1334浏览 2197个赞
根据unix时间戳返回一个相对当前时间的格式,如:3天前,24秒前等等//###############################//Usage:var myRelativeTime:String = timestampToRelative("Sun Oct 24 20:07:33 +0000 2010");//retu……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1237浏览 2024个赞
AS3实现的3D相册效果代码来源:http://www.adamcoulombe.info/lab/as3/screen-to-screen.htmlimport com.greensock.*;import com.greensock.easing.*;var lastRotX = 0;var lastRotY = 0; for(var i……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2160浏览 742个赞
创建Flash SharedObject(Flash Cookie)//create SOvar mySharedObject:SharedObject = SharedObject.getLocal("republicofcode");mySharedObject.data.firstName = "John&quo……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2028浏览 268个赞
C++实现的简单hashtable(哈希表)范例//A simple example of hashtable#include <iostream>#include <cstdlib>#include <cstring>#include <iomanip>#define SIZE_KEY ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2445浏览 2252个赞
将NtStatus code转换成Win32 Error /* * This is an alternative to the RtlNtStatusToDosError() * function in ntdll.dll. It uses the GetOverlappedResult() * function in kernel32.dll……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2708浏览 1157个赞
C++生成标准的ASCII编码表/*The standard ASCII table defines 128 character codes (from 0 to 127), ofwhich, the first 32 are control codes (non-printable), and the remaining 96character……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1486浏览 2266个赞
C++查看 IEEE 754 浮点数格式// A simple and practical way to show the format of the IEEE standardfor binary floating-point numbers (IEEE 754) is to use a union, as shown in the follow……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2797浏览 2482个赞
C++动态多维数组范例//creation of dynamic multidimensional arrays?#include <iostream>#include <iomanip>using namespace std; int main(){ //For creating one dimension……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1744浏览 1915个赞
一个简单的C语言链表实现/* Simple singly linked lists example usage; it is only one of many possible implementations - try your own enchancements.*/ #include <stdio.h>#in……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1166浏览 1819个赞
C语言动态创建4维数组#include <stdio.h>#include <stdlib.h> /********************************************************//* ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2541浏览 2591个赞
本代码演示了如何使用千位分隔符“,”格式化数字输出//Example for using thousand separator (,) for decimal integer numbers#include <iostream>#include <cstdlib> using namespace std; int m……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1328浏览 111个赞
C++简单交换堆排序/* Can easily be modified to work with other data types */ void heapsort(int *arr, int n){ int start, end; // heapify the array for(start = (n - 2) / ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1811浏览 1204个赞
C++面向对象中的多态代码演示//An example of using overriding techniques to demonstrate function with a polymorphism behaviour. #include <iostream> using namespace std; // abstract……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1167浏览 1082个赞
C语言初始化多维数组 //one dimensional array int x[5] = {1,2,3,4,5}; //two dimensional array int y[3][4] = {{1,2,3,4},{5,6,7,8},{9,10,11,12}}; //Three dimens……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2178浏览 2419个赞
基于面向对象的C++双向链表代码演示//An example of a simple double linked list using OOP techniques#include <iostream>using namespace std; struct Node{ double value; Node *N,*P; ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1235浏览 1624个赞
几个非常有用的C字符串函数#include <string.h>#include <stdlib.h> void remchars(char *str, char c);void remcnks(char *str, char *cnk);void replchars(char *str, char c1, char ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2192浏览 967个赞
C++异常处理范例代码// Program shows copying one text file from source location// to any other location (destination), plus possibility of changing its name, // and also shows many lan……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1721浏览 2698个赞