- 博客(2)
- 收藏
- 关注
原创 2020-12-18
Arduino里的模拟温度传感器LM35的使用。 #define LM35 A0 int val = 0; float temp = 0; void setup() {Serial.begin(9600);} void loop() {val = analogRead(LM35); temp = val * 4.8876 / 10; Serial.print("LM35 = "); Serial.println(temp); delay(500); }
2020-12-18 19:10:54 98
原创 2020-12-15
编写一个求x的n次方的函数。 //3_1.cpp #include using namespace std; //计算x的n次方 double power(double x,int n){ double val=1.0; while(n–) val*=x; return val; } int main(){ cout<<“5 to the power 2 is”<<power(5,2)<<end1;//函数调用作为一个表达式出现在输出语句中 return 0; } 运行结
2020-12-18 19:01:54 308
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人