Files
2026-04-27 14:01:24 +09:00

64 lines
1.7 KiB
TeX

\documentclass[xelatex,a4paper,11pt,ja=standard]{bxjsarticle}
\usepackage{tex/preamble}
\usepackage{tex/detailed-title}
\reportauthor{柴田健琉}
\reporttitle{前期第3回課題}
\reportdate{2026年}{04月}{27日}
\turnindate{2026年}{04月}{27日}
\schoolname{岐阜工業高等専門学校}
\department{電子制御工学科}
\subject{情報処理2}
\professor{遠藤 登}
\studentid{2024D14}
\seatingnum{15}
\begin{document}
\detailedtitle{}
\section{はじめに}
この課題のプログラムは以下の環境での動作が確認されている:
\begin{itemize}
\item{OS: NixOS 25.11 Xantusia, Linux Kernel 7.0.0 x86\_64}
\item{CC: GCC 15.2.0}
\item{CFLAGS: \texttt{-g -O1 -Wall -Wpedantic}}
\end{itemize}
\section{課題1}
再帰関数を用いて1から$n$の自然数の和を求めるプログラム.
\lstinputlisting[language=C,title={課題1}]{./src/cls03/a1.c}
\subsection{実行結果}
\begin{figure}[tbh]
\centering
\includegraphics[width=11cm]{./assets/cls03-a1.png}
\caption{課題1の実行結果}
\end{figure}
\newpage
\section{課題2-4}
課題2:ユークリッド互除法を用いた最大公約数を求める関数の作成.
課題3:課題2の関数を用いて最小公倍数を求める関数の作成.
課題4:配列として与えられた分数を約分する関数の作成.
\lstinputlisting[language=C,title={課題2-4の統合プログラム}]{./src/cls03/a2-4.c}
\subsection{実行結果}
\begin{figure}[tbh]
\centering
\includegraphics[width=12cm]{./assets/cls03-a2-4.png}
\caption{実行結果}
\end{figure}
\end{document}