Everyone who gets vaccinated stay away from 26. You’ve been warned.
9 Likes
7 Likes
My cousint (I added the T for my fellow Islanders) recently told me that she thinks she has too many bikes.
4 Likes
Hopefully you clarified that the correct formula she should be using is:
$n = count($bikes);
$correctNumBikes = $n + 1;
5 Likes
What is that fortran?
3 Likes
Now you made me spit on my keyboard.
program bikenumber
implicit none
integer :: bikes = 1
integer :: buyincrement = 1
integer :: divorce_garagecap = 1000
! compute
do while (bikes < divorce_garagecap)
bikes = bikes + buyincrement
print*, buyn, " ", bikes
end do
end program bikenumber
Probably won’t work.
6 Likes
A bastardized version of PHP haha.
The correct syntax to add one would be $bikes++, but that doesn’t keep with the old n+1 joke.
2 Likes