ProgrammingLanguage2019
Support page for Programming Language A/B
Please submit report to
ishii-at-cphys.s.kanazawa-u.ac.jp (replace -at- to @)
- Shortened url https://bit.ly/2okwoDM
- シラバス
- 教科書
Lecture note etc.
- You can find last year lecture note given by Prof. Takako Nemoto at JAIST
http://www.jaist.ac.jp/~t-nemoto/teaching/2018-2/2018-2.html
October 7, Guidance
- C言語とFortran
- 瞬間英作文ゲーム
- eisaku.dat1(197)
- english3.c(216)
gcc english3.c -o english ./english eisaku.dat1
とすることで、実行できる。
- レポート1回目
- プログラムenglish3.cの内容を説明する。
- プログラムの改良をおこなう。
- テンプレート(vimの例)
例) C言語
下記を$HOME/.vim/template/c.txt (emacsなら, $HOME/.emacs.d/template/c.txt)
として保存。
#include <stdio.h> int main() { printf("hello world\n"); }
.vimrcに下記の様に書き込む。
autocmd BufNewFile *.c 0r $HOME/.vim/template/c.txt
emacsの場合, $HOME/.emacs.d/init.el
に書きの様に書き込む。
(auto-insert-mode) (setq auto-insert-directory "~/.emacs.d/template/") (define-auto-insert "\\.c$" "c.txt")
janken_rev.c(134)
November 18
- janken2.c(144)
- janken2.in(128)