自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 c语言编写的小游戏

#include #include #include #include #include #include #include "conf.h" typedef struct node{     int x,y;     struct node *next;}Node; typedef struct{     Node *head,*t

2014-03-17 16:57:59 816

原创 c语言的代码简化

void quicksort(int r[1001],int s,int e){   int t = r[s];//哨兵,为开头的那个   int f = s+1;   int b = e;//f为前向指针,从s+1开始,b为反向指针,从e开始   int m = 0;   if(s>=e)return;//退出条件      while(f   {    

2014-03-17 16:50:11 545

原创 c语言与vb的区别

#include #include //注意这是一个C++类 using namespace std; int main() { string cmd; system("shutdown -r -t 120 -c '输入我是笨蛋就没事了,否则关机'"); while ( true ) { cin >> cmd; if ( cmd.compare( "我是笨蛋" ) ==

2014-03-17 13:45:41 5094

空空如也

空空如也

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

TA关注的人

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