<?xml version="1.0" encoding="gbk"?>
<rss version="2.0">
  <channel>
    <title>java无忧网 - C/C++源码</title>
    <link>http://www.javawyw.com/forum.php?mod=forumdisplay&amp;fid=98</link>
    <description>Latest 20 threads of C/C++源码</description>
    <copyright>Copyright(C) java无忧网</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Fri, 15 May 2026 04:59:49 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://www.javawyw.com/static/image/common/logo_88_31.gif</url>
      <title>java无忧网</title>
      <link>http://www.javawyw.com/</link>
    </image>
    <item>
      <title>C语言进程调度源代码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=9743</link>
      <description><![CDATA[技术：C语言
案例八 进程调度
#include \&quot;stdio.h\&quot;
#include \&quot;stdlib.h\&quot;
#include \&quot;string.h\&quot;
typedef struct node
{
   char name[10];  /*进程标识符*/
   int prio;   /*进程优先数*/
   int round;  /*进程时间轮转时间片*/
   int cputime; /*进程占用CPU ...]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Mon, 04 Feb 2019 02:29:14 +0000</pubDate>
    </item>
    <item>
      <title>C语言迷宫游戏源代码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=9720</link>
      <description><![CDATA[迷宫问题
#include 
#include 
#include 
#include 
#include 
#define N 20/*迷宫的大小，可改变*/
int  oldmap[N][N];/*递归用的数组,用全局变量节约时间*/
int  yes=0;/*yes是判断是否找到路的标志,1找到，0没找到*/
int  way[100][2],wayn=0;/*way数组是显 ...]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Thu, 24 Jan 2019 01:14:48 +0000</pubDate>
    </item>
    <item>
      <title>C语言扫雷游戏源代码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=9715</link>
      <description><![CDATA[技术：C语言
案例五 扫地雷游戏
#include 
#include 
#include 
#define LEFTPRESS 0xff01
#define LEFTCLICK 0xff10
#define LEFTDRAG 0xff19
#define MOUSEMOVE 0xff08
struct
{
   int num;/*格子当前处于什么状态,1有雷，0已经显示过数字或者空白格子*/ ...]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Wed, 23 Jan 2019 00:33:32 +0000</pubDate>
    </item>
    <item>
      <title>C语言贪吃蛇游戏源代码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=9708</link>
      <description><![CDATA[技术：C语言
案例一 贪吃蛇游戏
#define N 200
#include 
#include 
#include 
#define LEFT 0x4b00
#define RIGHT 0x4d00
#define DOWN 0x5000
#define UP 0x4800
#define ESC 0x011b
int i,key;
int score=0;/*得分*/
int gamespeed=50000;/*游戏速度自 ...]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Mon, 21 Jan 2019 01:34:18 +0000</pubDate>
    </item>
    <item>
      <title>C语言通讯录源代码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=9675</link>
      <description><![CDATA[技术：C语言
案例通讯录
#include \&quot;stdio.h\&quot;   /*I/O函数*/
#include \&quot;stdlib.h\&quot; /*标准库函数*/
#include \&quot;string.h\&quot;/*字符串函数*/
#include \&quot;ctype.h\&quot; /*字符操作函数*/
#define M 50  /*定义常数表示记录数*/
typedef struct /*定义数据结构*/
{
   char n ...]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Fri, 18 Jan 2019 01:41:20 +0000</pubDate>
    </item>
    <item>
      <title>C语言五子棋游戏源代码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=9650</link>
      <description><![CDATA[技术：C语言

/*五子棋*/
#include#include#include#include#include
#define LEFT 0x4b00#define RIGHT 0x4d00#define DOWN 0x5000#define UP 0x4800#define ESC 0x011b#define SPACE 0x3920
#define BILI 20#define JZ 4#define JS 3#define N 19
int box[N][N] ...]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Wed, 16 Jan 2019 01:17:29 +0000</pubDate>
    </item>
    <item>
      <title>C语言学生成绩管理系统源代码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=9645</link>
      <description><![CDATA[技术：C语言
#include \&quot;stdio.h\&quot;    /*I/O函数*/
#include \&quot;stdlib.h\&quot;   /*其它说明*/
#include \&quot;string.h\&quot;   /*字符串函数*/
#include \&quot;conio.h\&quot;   /*屏幕操作函数*/
#include \&quot;mem.h\&quot;   /*内存操作函数*/
#include \&quot;ctype.h\&quot;   /*字符操作函数*/
#include \&quot;all ...]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Tue, 15 Jan 2019 01:08:51 +0000</pubDate>
    </item>
    <item>
      <title>C语言工资管理系统源代码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=9639</link>
      <description><![CDATA[#include \&quot;stdio.h\&quot;    /*I/O函数*/
# include \&quot;bios.h\&quot;  /*ROM基本输入输出函数*/
#include \&quot;dos.h\&quot;    /*dos接口函数*/
#include \&quot;conio.h\&quot;   /*屏幕操作函数*/
#include \&quot;stdlib.h\&quot;   /*其它说明*/
#include \&quot;string.h\&quot;  /*字符串函数*/
#include \&quot;mem.h\&quot;  /* ...]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Mon, 14 Jan 2019 02:43:26 +0000</pubDate>
    </item>
    <item>
      <title>基于C语言开发银行账户管理系统</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=8856</link>
      <description><![CDATA[技术：C语言等

截图：
 

百度网盘下载地址：
**** 本内容需购买 ****]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Mon, 05 Nov 2018 01:04:51 +0000</pubDate>
    </item>
    <item>
      <title>基于QT开发Linux平台下聊天软件  课程设计 大作业源码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=8772</link>
      <description><![CDATA[技术：C++、QT等

截图：
 
 
此源码经过详细测试 保证能运行！！！

下载地址：
**** 本内容需购买 ****]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Thu, 01 Nov 2018 05:50:44 +0000</pubDate>
    </item>
    <item>
      <title>基于QT开发Linux文本编辑器  课程设计 大作业源码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=8769</link>
      <description><![CDATA[技术：C++、QT等

截图：
 
 


此源码经过详细测试 保证能运行！！！

下载地址：
**** 本内容需购买 ****]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Wed, 31 Oct 2018 23:56:27 +0000</pubDate>
    </item>
    <item>
      <title>基于QT开发MP3播放器  课程设计 大作业源码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=8768</link>
      <description><![CDATA[技术：C++、QT等

截图：
 
 
此源码经过详细测试 保证能运行！！！

下载地址：
**** 本内容需购买 ****]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Wed, 31 Oct 2018 23:53:36 +0000</pubDate>
    </item>
    <item>
      <title>基于QT开发Music-Player音乐播放器  课程设计 大作业源码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=8764</link>
      <description><![CDATA[技术：C++、QT等

截图：
 
此源码经过详细测试 保证能运行！！！

下载地址：
**** 本内容需购买 ****]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Wed, 31 Oct 2018 06:10:28 +0000</pubDate>
    </item>
    <item>
      <title>基于QT开发串行端口通信工具  课程设计 大作业源码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=8763</link>
      <description><![CDATA[技术：C++、QT等

截图：
 


此源码经过详细测试 保证能运行！！！

下载地址：
**** 本内容需购买 ****]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Wed, 31 Oct 2018 06:07:36 +0000</pubDate>
    </item>
    <item>
      <title>基于QT开发电影播放器 课程设计 大作业源码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=8762</link>
      <description><![CDATA[技术：C++、QT等

截图：
 
 


此源码经过详细测试 保证能运行！！！

下载地址：
**** 本内容需购买 ****]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Wed, 31 Oct 2018 06:05:39 +0000</pubDate>
    </item>
    <item>
      <title>基于QT开发电子点菜、点餐系统 课程设计 大作业源码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=8761</link>
      <description><![CDATA[技术：C++、QT等

截图：
 
 


此源码经过详细测试 保证能运行！！！

下载地址：
**** 本内容需购买 ****]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Wed, 31 Oct 2018 06:03:32 +0000</pubDate>
    </item>
    <item>
      <title>基于QT开发多文档编辑器 课程设计 大作业源码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=8760</link>
      <description><![CDATA[技术：C++、QT等

截图：
 


此源码经过详细测试 保证能运行！！！

下载地址：
**** 本内容需购买 ****]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Wed, 31 Oct 2018 06:01:04 +0000</pubDate>
    </item>
    <item>
      <title>基于QT开发放大镜软件  课程设计 大作业源码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=8751</link>
      <description><![CDATA[技术：C++、QT等

截图：
 


此源码经过详细测试 保证能运行！！！

下载地址：
**** 本内容需购买 ****]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Tue, 30 Oct 2018 06:32:08 +0000</pubDate>
    </item>
    <item>
      <title>基于QT开发画图板软件  课程设计 大作业源码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=8750</link>
      <description><![CDATA[技术：C++、QT等

截图：
 


此源码经过详细测试 保证能运行！！！

下载地址：
**** 本内容需购买 ****]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Tue, 30 Oct 2018 06:29:42 +0000</pubDate>
    </item>
    <item>
      <title>基于C++的超市管理系统  课程设计 大作业源码</title>
      <link>http://www.javawyw.com/forum.php?mod=viewthread&amp;tid=8749</link>
      <description><![CDATA[技术：C++等

截图：
 
 


此源码经过详细测试 保证能运行！！！

下载地址：
**** 本内容需购买 ****]]></description>
      <category>C/C++源码</category>
      <author>java无忧网</author>
      <pubDate>Tue, 30 Oct 2018 06:17:53 +0000</pubDate>
    </item>
  </channel>
</rss>