结果是游戏可以正常运行。
Linux,全称GNU/Linux,是一种免费使用和自由传播的类UNIX操作系统,其内核由林纳斯·本纳第克特·托瓦兹于1991年10月5日首次发布,它主要受到Minix和Unix思想的启发,是一个基于POSIX的多用户、多任务、支持多线程和多CPU的操作系统。
它能运行主要的Unix工具软件、应用程序和网络协议。它支持32位和64位硬件。Linux继承了Unix以网络为核心的设计思想,是一个性能稳定的多用户网络操作系统。Linux有上百种不同的发行版,如基于社区开发的debian、archlinux,和基于商业开发的Red Hat Enterprise Linux、SUSE、Oracle Linux等。
2021年6月,根据Linux 5.14刚刚进入合并队列的char-misc-next提交,Linux 5.14正式移除了RAW驱动。
Linux操作系统的诞生、发展和成长过程始终依赖着五个重要支柱:Unix操作系统、MINIX操作系统、GNU计划、POSIX标准和Internet网络。
20世纪80年代,计算机硬件的性能不断提高,PC的市场不断扩大,当时可供计算机选用的操作系统主要有Unix、DOS和macOS这几种。Unix价格昂贵,不能运行于PC;DOS显得简陋,且源代码被软件厂商严格保密;MacOS是一种专门用于苹果计算机的操作系统。
#include
#include
void move(char source, char dest, char using, int qty)
{
if(qty >= 1) {
move(source, using, dest, qty - 1);
printf("move from %c to %c\n", source, dest);
move(using, dest, source, qty - 1);
}
}
int main(int argc, char **argv)
{
long int N;
if(argc != 2) {
fprintf(stderr, "usage: %s N\n", argv[0]);
exit(1);
}
N = strtol(argv[1], (char **)NULL, 10);
move('A', 'C', 'B', N);
exit(0);
}
#include
void move(const char *from, const char *to, int count)
{
printf("%s -> %s count=%d\n", from, to, count);
}
void hanno(const char *from, const char *to, const char *temp, unsigned int num)
{
if (num == 0) {
//this is a fatal, and check your input.
}
else if (num == 1) {
move(from, to, 1);
}
else {
hanno(from, temp, to, num-1); //move the num-1 to the "temp".
move(from, to, 1); //move the bigest one.
move(temp, to, num-1); //move the num-1 to the "to".
}
}
int
main(int argc, char *argv[])
{
hanno("1", "3", "2", 4);
return 0;
}
这都是经典的游戏 网上搜一下代码,在linux中运行一下就好了