Skip to main content
added 104 characters in body
Source Link
Noodle9
  • 20.2k
  • 3
  • 20
  • 45

C (gcc), 35 44 3838 36 bytes

Saved a byte thanks to my pronoun is monicareinstate!!!
Saved 2 bytes thanks to Arnauld!!!
Added 10 bytes to fix a bug kindly pointed out by Kjetil S.

f(n){printf("%.2f\n"2f",exp(-~n/16.-2));}

Try it online!Try it online!

C (gcc), 35 44 38 bytes

Saved a byte thanks to my pronoun is monicareinstate!!!
Added 10 bytes to fix a bug kindly pointed out by Kjetil S.

f(n){printf("%.2f\n",exp(-~n/16.-2));}

Try it online!

C (gcc), 35 44 38 36 bytes

Saved a byte thanks to my pronoun is monicareinstate!!!
Saved 2 bytes thanks to Arnauld!!!
Added 10 bytes to fix a bug kindly pointed out by Kjetil S.

f(n){printf("%.2f",exp(-~n/16.-2));}

Try it online!

deleted 6 characters in body
Source Link
Noodle9
  • 20.2k
  • 3
  • 20
  • 45

C (gcc), 35 4444 38 bytes

Saved a byte thanks to my pronoun is monicareinstate!!!
Added 10 bytes to fix a bug kindly pointed out by Kjetil S.

float f(n){printf("%.2f\n",exp(-~n/16.-2));}

Try it online!Try it online!

C (gcc), 35 44 bytes

Saved a byte thanks to my pronoun is monicareinstate!!!
Added 10 bytes to fix a bug kindly pointed out by Kjetil S.

float f(n){printf("%.2f\n",exp(-~n/16.-2));}

Try it online!

C (gcc), 35 44 38 bytes

Saved a byte thanks to my pronoun is monicareinstate!!!
Added 10 bytes to fix a bug kindly pointed out by Kjetil S.

f(n){printf("%.2f\n",exp(-~n/16.-2));}

Try it online!

added 274 characters in body
Source Link
Noodle9
  • 20.2k
  • 3
  • 20
  • 45

C (gcc), 3535 44 bytes

Saved a byte thanks to my pronoun is monicareinstate!!!
Added 10 bytes to fix a bug kindly pointed out by Kjetil S.

float f(n){return expprintf("%.2f\n",exp(n-31)~n/16.-2));}

Try it online!Try it online!

C (gcc), 35 bytes

float f(n){return exp((n-31)/16.);}

Try it online!

C (gcc), 35 44 bytes

Saved a byte thanks to my pronoun is monicareinstate!!!
Added 10 bytes to fix a bug kindly pointed out by Kjetil S.

float f(n){printf("%.2f\n",exp(-~n/16.-2));}

Try it online!

Source Link
Noodle9
  • 20.2k
  • 3
  • 20
  • 45
Loading