22 lines
462 B
TeX
Raw Normal View History

2024-01-08 11:26:44 -08:00
\documentclass[
solutions,
hidewarning,
singlenumbering,
nopagenumber
]{../../resources/ormc_handout}
\usepackage{../../resources/macros}
\title{Warm-Up: \texttt{fmod}}
2024-04-01 21:50:50 -07:00
\uptitler{\smallurl{}}
\subtitle{Prepared by Mark on \today.}
2024-01-08 11:26:44 -08:00
\begin{document}
\maketitle
\problem{}
I'm sure you're all familiar with how \texttt{mod(a, b)} and \texttt{remainder(a, b)} work with integers. \par
Devise an equivalent for floats (i.e, real numbers).
\end{document}