为您找到约 282 条结果,搜索耗时:0.0022秒
-
-
...; // 跳过读序号列号的操作
WriteOneChar(0x44); // 启动温度转换
delay_18B20(100); // this message is wery important
Init_DS18B20();
WriteOneChar(0xCC); //跳过读序号列号的操作
WriteOneChar(0xBE); //读取温度寄存器等(共可...
-
-
...===========================================【程序82】题目:八进制转换为十进制1.程序分析: 2.程序源代码:main(){ char *p,s[6];int n;p=s;gets(p);n=0;while(*(p)!=’\0’){n=n*8+*p-’0’;p++;}printf(“%d“,n);}==============================...