很偶然的机会认识到这个语言,当时在纸上对着它的 "hello world" 程序一个字符一个字符的解释了一遍,惊讶于它的设计思想。到网上查了下,记录下来。 以下是正文 : --------------------------------? Brainfuc...
分类:
编程语言 时间:
2014-09-23 16:36:25
阅读次数:
248
1、下载python,默认安装即可:2、添加C:\Python27(默认安装目录)到path环境变量:3、CMD下测试是否安装成功:4、桌面新建txt文档,修改后缀名为py,右击选择“edit whit IDLE”,用自带的轻量级IDE写一个hello world。下面图示复习了下CMD下面怎样方面...
分类:
编程语言 时间:
2014-09-22 23:42:03
阅读次数:
378
#include #include /*自己实现strcat函数的功能。(假如字符数组足够大)*/ void main(){ char str1[100] = "helloworld"; char str2[100] = "world"; int i = 0; int index = strlen....
分类:
其他好文 时间:
2014-09-22 22:12:53
阅读次数:
165
3、Creating a World Space UIUI系统很容易地创建UI用户界面,被定位在其他2D或 3D场景中对象之间的世界中。开始通过创建一个 UI元素(如Image图像),如果在你的场景中还没有,可以通过使用:GameObject > UI > Image。这也将为您创建一个画布。Set...
分类:
其他好文 时间:
2014-09-22 20:56:13
阅读次数:
424
#include void main(){ char str1[100] = "hello"; char str2[100] = "world"; int i = 0; for(i = 0;str1[i] != 0 && str2[i] != 0;i++) { if(str1[i] > str2.....
分类:
其他好文 时间:
2014-09-22 20:48:13
阅读次数:
186
#include #include typedef struct DataNode{ int (*handle)();}tDataNode;int print(){ printf("Hello World!\n"); return 0;}int main(){ int a = 0; tDataNod...
分类:
其他好文 时间:
2014-09-22 20:39:53
阅读次数:
166
No matter how Microsoft is doing in comparison with Google, Microsoft Office is still the most used application in software world. Other alternatives ...
分类:
编程语言 时间:
2014-09-22 20:04:23
阅读次数:
337
首先,打开“服务”查看下面的服务是否启动。(下面的两个服务就是跟IIS相关的服务,计算机(右键)-》管理-》服务和应用程序-》服务)Windows Process Activation Service服务world wide web publishing service服务 没有启动,启动服务。
分类:
其他好文 时间:
2014-09-22 19:47:23
阅读次数:
122
本博文主要探讨字符串的相关操作。问题描述:将一篇文本录入,实现查询功能。a):可以输入字符或者字符串,然后将包含他们的单词取出,并打印;(即返回一个容器)b):允许重复;c):如果查询词包含多项,则执行多次查询。例如:“hello world”,则先查询hello,后查询world。本程序待优化之处...
分类:
编程语言 时间:
2014-09-22 02:14:21
阅读次数:
329