ryuchan00 / basic_programing

UEC
0 stars 0 forks source link

チームでソフトウェア開発!?!? #15

Open hayato0718 opened 4 years ago

hayato0718 commented 4 years ago

せいかい


カ struct xy calc(struct xy a, struct xy b) { 
ナ   struct xy c = { a.x+b.x, a.y+b.y };
ソ   return c;
ク } 
hayato0718 commented 4 years ago

せいかい


ア double calc(struct cell *p) { 
オ   double x = -1.0;
ケ   for( ; p != NULL; p = p->next) { 
ス     if(p->d1 > p->d2) { 
コ       if(x < 0.0) { 
ソ         x = p->d1;
ウ       } 
シ       if(x > p->d1) { 
ソ         x = p->d1;
ウ       } 
ウ     } 
ウ   } 
キ   return x;
ウ }