首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴tianjingjian的代码贴全部
#include <REGX52.H>
sbit speaker=P2^1;
 
unsigned char timer0h,timer0l,time;
//定义每个音阶的长度的数组 《世上只有妈妈好》
code unsigned char song_mother[]=
{
6,2,3,5,2,1 ,3,2,2,5,2,2, 1,3,2,6,2,1,5,2,1, 
6,2,4,3,2,2, 5,2,1, 6,2,1, 5,2,2, 3,2,1 ,2,2,1,1,2,1,
6,1,1,5,2,1, 3,2,1 ,2,2,4, 2,2,3, 3,2,1, 5,2,2,
5,2,1,6,2,1, 3,2,2 ,2,2,2 ,1,2,4, 5,2,3, 3,2,1 ,
2,2,1,1,2,1 ,6,1,1, 1,2,1, 5,1,6, 0,0,0  
......................
阅读全部 | 2020年1月21日 16:55
package myapplet;
 import java.applet.*;
 import java.awt.*;
 public class Myaplt extends Applet{
     public void init()
     {
         System.out.println("init");
     }
     public void start()
     {
         System.out.println("start");
     }
......................
阅读全部 | 2020年1月21日 15:43
#include <stdio.h>

int main() {
printf("我在编程中国学C语言\n\n");

// 练习一下循环的使用
int i;
for (i=1; i<=20; i++) {
printf("我爱编程中国 %d 次\n", i);
}

printf("\n\n编程中国送我一颗小心心:");
......................
阅读全部 | 2020年1月21日 15:31
1
tianjingjian