上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 69 下一页
  2013年4月18日
摘要: 测试代码: 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 0 1 0 0 0 1 1 12 0 1 0 1 1 1 0 1 0 0 1 1 0 1 0-2 1 1 1 1 1 1 1 1 1 1代表障碍,0代表能通道,2代表起点,-2代表终点 本题我使用的是递归调用的方法解决的, 是一种深收的算法,呵呵!!!废话不多说,看哥的 精彩程序吧!!!程序输入情况如下:1代表障碍,2代表已经找到的通道,3代表起点和终点#include<iostream>#include<math.h>#include<stdio.h>#include<algor 阅读全文
posted @ 2013-04-18 01:08 @ 小浩 阅读(258) 评论(0) 推荐(0) 编辑
  2013年4月16日
摘要: http://www.cnblogs.com/chengkai/articles/2171848.html<html><head><title>JSP的中文处理</title><meta http-equiv="Content-Type" content="text/html charset=gb2312"></head><body><%out.print("JSP的中文处理");%></body></html>这种 阅读全文
posted @ 2013-04-16 13:55 @ 小浩 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 测试代码: 1 0 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 0 1 0 1 0 1 0 0 1-1 0 1 0 0 0 0 1 0 1 0 1 1 0 0 0 1 0 0 1 0 0 1 0 1 0 0 1 0 1 0 0 1 0 0-2 0 01代表障碍,0代表能走通,-1代表入口 2代表出口路径本题我使用的是递归调用的方法解决的,是一种深收的算法,呵呵!!!废话不多说,看哥的精彩程序吧!!!这里 0代表能走通,1代表障碍,2代表通道,3代表起始点和终止点#include<iostream>#include<stdio.h>#include< 阅读全文
posted @ 2013-04-16 00:25 @ 小浩 阅读(527) 评论(0) 推荐(0) 编辑
  2013年4月11日
摘要: #include "stdafx.h"是预编译处理器把stdafx.h文件中的内容加载到程序中来。stdafx.h 1名称的英文全称为:Standard Application Fram Extend 所谓头文件预编译,就是把一个工程(Project)中使用的一些MFC标准头文件(如Windows.H、Afxwin.H)预先编译,以后该工程编译时,不再编译这部分头文件,仅仅使用预编译的结果。这样可以加快编译速度,节省时间。 预编译头文件通过编译stdafx.cpp生成,以工程名命名,由于预编译的头文件的后缀是“pch”,所以编译结果文件是projectname.pch。 编 阅读全文
posted @ 2013-04-11 23:06 @ 小浩 阅读(848) 评论(0) 推荐(0) 编辑
摘要: 错误1:LIBCD.lib(crt0.obj) : error LNK2001: unresolved external symbol _main在project-setting-link里找到project options 去掉里面的/subsystem:console错误2:nafxcwd.lib(thrdcore.obj) : error LNK2001: unresolved external symbol __endt...将工程设置为Using MFC in a static library错误3:libcmtd.lib(crt0.obj) : error LNK2001: unr 阅读全文
posted @ 2013-04-11 21:47 @ 小浩 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 2007-09-02 15:35Turbo C 2.0/3.0(TC2.0/2.0)设置详解 对于初学程序设计的人来说Turbo C 2.0无疑是最简单最理想的入门语言环境之一,但也常由于环境变量设置的不正确导致程序无法编译运行,严重打击了初学者来之不易的自信心。为了迅速解决此类问题,使大家能把精力集中到程序设计上来,我们特地编写本文以帮助有心涉足编程领域的初学者。1.准备TC2.0 得到TC2.0的最简单快速的方法当然是从网上下载了 下载之后的工作就是解压缩了,解压缩可以使用WinZip或WinRar。在此我们假设将TC解压到"x:\TC20"目录(x表示盘符),当然您也 阅读全文
posted @ 2013-04-11 18:48 @ 小浩 阅读(1858) 评论(0) 推荐(0) 编辑
  2013年4月9日
摘要: #include <stdio.h>#include <stdlib.h>#include <string.h>#define error 0#define ok 1#define overflow -1#define STACK_INIT_SIZE 100#define STACKINCREMENT 10#define OPSETSIZE 7char OPSET[7]={'+','-','*','/','(',')','#'};unsigned 阅读全文
posted @ 2013-04-09 22:48 @ 小浩 阅读(585) 评论(0) 推荐(0) 编辑
摘要: atof的作用是将字符数组转换成相应的双精度的实数,本题的例子如下:(仅供参考)#include<iostream>#include<stdlib.h>#include<string.h>using namespace std;int main(){char a[10]="1236241";double b=atof(a);cout<<b<<endl; return 0;} 阅读全文
posted @ 2013-04-09 22:46 @ 小浩 阅读(2289) 评论(0) 推荐(0) 编辑
  2013年4月2日
摘要: #include<iostream>#include<stdio.h>#include<math.h>#include<string.h>#include<algorithm>#define LEN1 sizeof(struct Queue1)#define LEN2 sizeof(struct Queue2)#define LEN3 sizeof(struct Queue3)using namespace std;struct Queue1{double xishu;char zimu[10];double cishu[10];st 阅读全文
posted @ 2013-04-02 13:38 @ 小浩 阅读(1052) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<string.h>#include<math.h>#include<algorithm>#include<stdio.h>using namespace std;int main(){double num1[20];double num2[20]; printf("请输入多项式的最高次数数\n"); int n; cin>>n; printf("请输入该一元多项式的元\n"); getchar(); char s; scanf(& 阅读全文
posted @ 2013-04-02 13:35 @ 小浩 阅读(411) 评论(0) 推荐(0) 编辑
上一页 1 ··· 55 56 57 58 59 60 61 62 63 ··· 69 下一页