Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - printf.c
Search - printf.c - List
Subroutine written in Keil-C for 8051 family to interface directly to a 2x16 character LCD through Port 1. Can be easily modified to suit any HD44740 hitachy controller alphanumeric LCD.
Date : 2025-12-21 Size : 1kb User : Tahanix

一个Hanoi的小游戏void Hanoi(int n, char x,char y,char z){ if (n==1) { printf( %c %d %c\n ,x,n,z) return } Hanoi(n-1,x,z,y) printf( %c %d %c\n ,x,n,z) Hanoi(n-1,y,x,z) }-Hanoi in a game void Hanoi (int n, char x, char y, char z) (if (n == 1) (printf ( c d c , x, n, z) return) Hanoi ( n-1, x, z, y) printf ( c d c , x, n, z) Hanoi (n-1, y, x, z))
Date : 2025-12-21 Size : 7kb User : xian4126602
CodeBus is one of the largest source code repositories on the Internet!
Contact us :
1999-2046 CodeBus All Rights Reserved.