C/Zaawansowane operacje matematyczne: Różnice pomiędzy wersjami

Usunięta treść Dodana treść
m →‎Mnożenie: format i link
Linia 1143:
* zachowanie niezdefiniowane : ( ang. undefined behavior = UB)<ref>[[:w:en:Undefined_behavior|Undefined_behavior w ang. wikipedii]]</ref> <ref>[https://www.nayuki.io/page/undefined-behavior-in-c-and-cplusplus-programs undefined-behavior-in-c-and-cplusplus-programs by Nayuki]</ref>
====Mnożenie ====
* [[C/Zaawansowane_operacje_matematyczne#produkt_(_iloczyn)|obliczanie silni]]
 
<syntaxhighlight lang=c>
Linia 1149 ⟶ 1150:
#include <time.h>
/*
 
https://math.stackexchange.com/questions/2453939/is-this-characteristic-of-tent-map-usually-observed
 
 
 
 
 
*/
 
 
 
/* ------------ constans ---------------------------- */
Linia 1165 ⟶ 1158:
int iMax = 100;
/* ------------------- functions --------------------------- */
 
 
/*
 
tent map
https://en.wikipedia.org/wiki/Tent_map
 
*/
double f(double x0, double m){
Linia 1326 ⟶ 1316:
 
</pre>
 
 
====Porównywanie====