started assignment and added programs
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
# CHANGEME
|
||||
# information-processing-1_5th-class
|
||||
|
||||
5th class: Type Casting
|
||||
|
||||
@@ -1,23 +1,23 @@
|
||||
doc_class: nitreport
|
||||
|
||||
title: Insert Title Here
|
||||
title: 第5回課題
|
||||
author:
|
||||
name: 高専 太郎
|
||||
student_id: 0000-01
|
||||
seating_number: 1
|
||||
name: 柴田 健琉
|
||||
student_id: 2024D14
|
||||
seating_number: 15
|
||||
date:
|
||||
year: 令和7年
|
||||
month: aa月
|
||||
day: bb日
|
||||
month: 05月
|
||||
day: 08日
|
||||
turnin:
|
||||
year: 令和7年
|
||||
month: cc月
|
||||
day: dd日
|
||||
month: 05月
|
||||
day: 12日
|
||||
|
||||
school_name: abc高専
|
||||
department: 一般科
|
||||
subject: 〇〇概論
|
||||
professor: □□教員
|
||||
school_name: 岐阜工業高等専門学校
|
||||
department: 電子制御工学科
|
||||
subject: 情報処理I
|
||||
professor: 岡崎 憲一
|
||||
|
||||
paper_config:
|
||||
include_cover_page: true
|
||||
@@ -31,6 +31,9 @@ paper_config:
|
||||
# - { name: "pkg-wo-opt", options: "" }
|
||||
|
||||
sections:
|
||||
- { path: 'section/introduction.tex', newpg: true }
|
||||
- { path: 'md-out/test.tex', newpg: false }
|
||||
- { path: 'section/introduction.tex', newpg: false }
|
||||
- { path: 'section/syntax.tex', newpg: true }
|
||||
- { path: 'section/p25.tex', newpg: true }
|
||||
- { path: 'section/p26.tex', newpg: true }
|
||||
- { path: 'section/comp.tex', newpg: true }
|
||||
|
||||
|
||||
@@ -1,18 +0,0 @@
|
||||
# Hi
|
||||
|
||||
| x | y |
|
||||
| --- | --- |
|
||||
| 0 | 0 |
|
||||
| 1 | 1 |
|
||||
| 2 | 2 |
|
||||
| 3 | 3 |
|
||||
| 4 | 4 |
|
||||
|
||||
* i1
|
||||
* i2
|
||||
* i3
|
||||
|
||||
1. n1
|
||||
2. n2
|
||||
3. n3
|
||||
|
||||
10
programs/comp/info.json
Normal file
10
programs/comp/info.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"language": "C",
|
||||
"name": "演習課題2",
|
||||
"description": "電卓とC言語での演算の違いを比較する。",
|
||||
"output": {
|
||||
"type": "screenshot",
|
||||
"content": "./assets/comp.png"
|
||||
},
|
||||
"note": ""
|
||||
}
|
||||
16
programs/comp/main.c
Normal file
16
programs/comp/main.c
Normal file
@@ -0,0 +1,16 @@
|
||||
#include <stdio.h>
|
||||
|
||||
// Using function macro cuz im lazy
|
||||
#define CALC(T,E) printf("Result: %"#T"\n", E);
|
||||
|
||||
int main(void) {
|
||||
|
||||
CALC(.6f,(5/2+1.5/2))
|
||||
CALC(.6f,(((int)2.5+4.0)/5))
|
||||
CALC(d,((int)(1.5+3)/2))
|
||||
CALC(.6f,(4+2*(double)(6/4)))
|
||||
CALC(.6f,((int)3.3/1.1+(double)2/4))
|
||||
|
||||
return 0;
|
||||
|
||||
}
|
||||
10
programs/p25/info.json
Normal file
10
programs/p25/info.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"language": "C",
|
||||
"name": "演習課題1 演習2ー5",
|
||||
"description": "2つの整数値を読み込み、前者の値が後者の値の何%であるかを倍精度浮動小数点数として表示するプログラム。",
|
||||
"output": {
|
||||
"type": "screenshot",
|
||||
"content": "./assets/p25.png"
|
||||
},
|
||||
"note": ""
|
||||
}
|
||||
14
programs/p25/main.c
Normal file
14
programs/p25/main.c
Normal file
@@ -0,0 +1,14 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
int a, b;
|
||||
|
||||
printf("Integer a: ");
|
||||
scanf("%d", &a);
|
||||
printf("Integer b: ");
|
||||
scanf("%d", &b);
|
||||
|
||||
printf("Value of a is %f%% of b.\n", (double)a / (double)b * 100.0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
10
programs/p26/info.json
Normal file
10
programs/p26/info.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"language": "C",
|
||||
"name": "演習課題1 演習2ー6",
|
||||
"description": "身長を整数値として読み込み、標準体重を実数小数点以下1桁として表示するプログラム。なお標準体重は$0.9(height - 100)$で求めるものとする。",
|
||||
"output": {
|
||||
"type": "screenshot",
|
||||
"content": "./assets/p26.png"
|
||||
},
|
||||
"note": ""
|
||||
}
|
||||
12
programs/p26/main.c
Normal file
12
programs/p26/main.c
Normal file
@@ -0,0 +1,12 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
int height;
|
||||
|
||||
printf("Input your height in cm: ");
|
||||
scanf("%d", &height);
|
||||
|
||||
printf("Standard weight is %.1fkg.\n", 0.9 * (double)(height - 100));
|
||||
|
||||
return 0;
|
||||
}
|
||||
13
section/comp.tex
Normal file
13
section/comp.tex
Normal file
@@ -0,0 +1,13 @@
|
||||
\section{演習課題2}
|
||||
|
||||
電卓とC言語での演算の違いを比較する。
|
||||
|
||||
\subsection{コードリスティング}
|
||||
|
||||
\lstinputlisting[language=C,title={演習課題2}]{../programs/comp/main.c}
|
||||
|
||||
\subsection{実行結果}
|
||||
|
||||
\begin{center}
|
||||
\includegraphics[width=\textwidth]{./assets/comp.png}
|
||||
\end{center}
|
||||
@@ -1,70 +1 @@
|
||||
\section{はじめに}
|
||||
|
||||
Start Writing!
|
||||
|
||||
Use lualatex + biber to compile.
|
||||
|
||||
Test Bib\cite{example}
|
||||
|
||||
いろはにほへと ちりぬるを
|
||||
|
||||
{\gtfamily \sffamily \LaTeX で自由な組版を。}
|
||||
|
||||
{\gtfamily \sffamily Write freely with \LaTeX{}.}
|
||||
|
||||
{\ttfamily LaTeX shall be free forever!}
|
||||
|
||||
\noindent
|
||||
この行のテキストは四十二字です。ああああああああああああああああああああああああああいいいい
|
||||
|
||||
\defaultlistingstyle
|
||||
|
||||
\begin{lstlisting}[language=C, caption=Basic Hello World]
|
||||
#include <stdlib.h>
|
||||
|
||||
int square(int n) {
|
||||
return n*n;
|
||||
}
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
char* msg = "Hello World";
|
||||
int x = 3;
|
||||
int y = square(x);
|
||||
printf("%s\n", msg);
|
||||
printf("f(x) = x^2; x: %d, y: %d\n", x, y);
|
||||
return 0;
|
||||
}
|
||||
\end{lstlisting}
|
||||
|
||||
\begin{displaymath}
|
||||
\int_{a}^{b} f(x) \,dx = F(b)-F(a)
|
||||
\end{displaymath}
|
||||
|
||||
\begin{itemize}
|
||||
\item C
|
||||
\item Python
|
||||
\item Javascript
|
||||
\item Rust
|
||||
\item Haskell
|
||||
\end{itemize}
|
||||
|
||||
\begin{enumerate}
|
||||
\item lualatex <filename>.tex
|
||||
\item biber <filename>
|
||||
\item lualatex <filename>.tex
|
||||
\item lualatex <filename>.tex
|
||||
\end{enumerate}
|
||||
|
||||
\newpage
|
||||
|
||||
\section{Section}
|
||||
|
||||
section
|
||||
|
||||
\subsection{Sub Section}
|
||||
|
||||
sub section
|
||||
|
||||
\paragraph{Paragraph}
|
||||
|
||||
paragraph
|
||||
|
||||
13
section/p25.tex
Normal file
13
section/p25.tex
Normal file
@@ -0,0 +1,13 @@
|
||||
\section{演習課題1 演習2ー5}
|
||||
|
||||
2つの整数値を読み込み、前者の値が後者の値の何%であるかを倍精度浮動小数点数として表示するプログラム。
|
||||
|
||||
\subsection{コードリスティング}
|
||||
|
||||
\lstinputlisting[language=C,title={演習課題1 演習2ー5}]{../programs/p25/main.c}
|
||||
|
||||
\subsection{実行結果}
|
||||
|
||||
\begin{center}
|
||||
\includegraphics[width=\textwidth]{./assets/p25.png}
|
||||
\end{center}
|
||||
13
section/p26.tex
Normal file
13
section/p26.tex
Normal file
@@ -0,0 +1,13 @@
|
||||
\section{演習課題1 演習2ー6}
|
||||
|
||||
身長を整数値として読み込み、標準体重を実数小数点以下1桁として表示するプログラム。なお標準体重は$0.9(height - 100)$で求めるものとする。
|
||||
|
||||
\subsection{コードリスティング}
|
||||
|
||||
\lstinputlisting[language=C,title={演習課題1 演習2ー6}]{../programs/p26/main.c}
|
||||
|
||||
\subsection{実行結果}
|
||||
|
||||
\begin{center}
|
||||
\includegraphics[width=\textwidth]{./assets/p26.png}
|
||||
\end{center}
|
||||
0
section/syntax.tex
Normal file
0
section/syntax.tex
Normal file
Reference in New Issue
Block a user