Powered by SmartDoc

ソフトウェア概論A/B (2020/04/24)
Ver. 1.0

2020年4月24日
栗野 俊一
kurino@math.cst.nihon-u.ac.jp
http://edu-gw2.math.cst.nihon-u.ac.jp/~kurino/2020/soft/soft.html
ソフトウェア概論 A/B2020年4月24日 の資料

目次

講義資料

当日の OHP 資料

講義で利用するサンプルプログラム

Download : sample-001.c

sample-001.c
/*
 * 2020/04/24 sample-001.c
 */

/*
 * 最初のプログラムは "Hello, World"
 */

#include <stdio.h>

/*
 * main 関数
 */

int main ( void ) {

	printf ( "Hello, World\n" );	/* "Hello, World" という文字列と改行 ( "\n" ) を表示する */

	return 0;
}
sample-001.c の実行結果
$ ./sample-001.exe
Hello, World
$ 

講議中に作成したプログラム

本日の課題

課題プログラム内の「/*名前:ここ*/」の部分を書き換え「/*この部分を完成させなさい*/」の部分にプログラムを追加して、プログラムを完成させます。

課題 20200424-01 : 「Hello, 自分の名前」を出力する C 言語のプログラム

Download : 20200424-01.c

20200424-01.c
/*
 * 20200424-01-QQQQ.c
 *	「Hello, 自分の名前」と出力するプログラム
 */

#include <stdio.h>

/*
 * main
 */

int main ( void ) {

  printf ( /* q:ここ */ );

  return 0;
}
20200424-01.c の実行結果
$ ./20200424-01-QQQQ.exe
Hello, 栗野
$