http://linuxpilot.com/ubuntu-javaclass HelloWorld{public static void main(String[]arg){System.out.println("HelloUbuntu");}}保存为H.javajavac H.javajava H...
分类:
编程语言 时间:
2015-04-01 01:47:50
阅读次数:
143
最早的批处理操作系统是什么样子的呢?它又是如何工作的呢? 令人震惊的是:很难找到一篇能够对早期的批处理系统操作系统处理器(早期的批处理器020)做详细描述的文章。Bob Rosin(2000)解释了相关文章为何如此之少的原因: 首先,这些系统都很“容易理解”——人们可以在几分钟内通过阅读一个说明书(...
分类:
其他好文 时间:
2015-04-01 01:46:29
阅读次数:
179
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace Hello_World 7 { 8 class Program 9 ...
分类:
其他好文 时间:
2015-04-01 01:42:52
阅读次数:
117
1、Windows服务程序列表位置
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services
2、卸载程序列表位置
32位系统
当前用户软件HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall
所有用户软件HKEY_LOCAL_...
问题:
求两个数的最小公倍数
#include
#include
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
int m, n, b;
i...
分类:
其他好文 时间:
2015-04-01 00:29:41
阅读次数:
180
问题:
输入一个分数,将该分数分解为埃及分数。
真分数:分子小于分母的分数
埃及分数:分子为一的分数
#include
#include
/* run this program using the console pauser or add your own getch, system("pause") or input loop...
分类:
其他好文 时间:
2015-04-01 00:29:02
阅读次数:
127
问题:
求两个数的最大公约数。
//最大公约数
#include
#include
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[]) {
int ...
分类:
其他好文 时间:
2015-04-01 00:28:51
阅读次数:
119
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication3{ class...
Mac OS X 内置了Apache 和 PHP,这样使用起来非常方便。本文以Mac OS X 10.6.3为例。主要内容包括:启动Apache运行PHP安装MySQL使用phpMyAdmin配置PHP的MCrypt扩展库设置虚拟主机启动Apache有两种方法:打开“系统设置偏好(System Pr...
分类:
Web程序 时间:
2015-04-01 00:06:08
阅读次数:
192
只能用类名调用静态成员(用"类名.???")using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace Console...