2020年1月29日 星期三

#define




#define PI 3.14159
#define area(x) PI*x*x
void setup()
{
  // put your setup code here, to run once:
 Serial.begin(9600);
}

void loop()
{
  // put your main code here, to run repeatedly:
  float result=area(2);
  Serial.println(result);
}

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...