プログラムの作成と実行 /* 66666 tachibana masayoshi */ /* p27 list 2.1 */ #include "stdafx.h" int main(void) { printf(”松島や ああ松島や 松島や\n”); return 0; } /* 66666 tachibana masayoshi */ /* p27 list 2.1 */ 学籍番号と名前 教科書のページとプログラム番号 #include "stdafx.h" int main(void) ダブルクォート { printf(”松島や ああ松島や 松島や\n”); return 0; } 日本語モード コメント /* で始まり */ で終わる。行をまたいでもよい。 /* 66666 tachibana masayoshi */ /* p27 list 2.1 */ #include "stdafx.h" エスケープシーケンス \n 改行 int main(void) { printf(”松島や ああ松島や 松島や\n”); printf関数 return 0; } ; 文の終わり /* 66666 tachibana masayoshi */ /* p27 list 2.1 */ printfを使えるようにする #include "stdafx.h" main関数 int main(void) { printf(”松島や ああ松島や 松島や\n”); printf関数 return 0; } ; 文の終わり /* 66666 tachibana masayoshi */ #include "stdafx.h" int main(void) { return 0; } Cのプログラムの雛形 /* 66666 tachibana masayoshi */ /* p39 list 2.8 */ #include "stdafx.h" int main(void) { printf(”[尺貫法の単位]\n”); printf(”町(ちょう)\t60間\t109m\n”); printf(”間(けん)\t6尺\t1.818m\n”); printf(”尺(かねじゃく)\t10寸\t30.3cm\n”); printf(”寸(すん)\t0.1尺\t3.03cm\n”); return 0; } /* 66666 tachibana masayoshi */ /* p39 list 2.8 */ #include "stdafx.h" int main(void) { printf(”[尺貫法の単位]\n”); printf(”町(ちょう)\t60間\t109m\n”); printf(”間(けん)\t6尺\t1.818m\n”); printf(”尺(かねじゃく)\t10寸\t30.3cm\n”); printf(”寸(すん)\t0.1尺\t3.03cm\n”); return 0; } \t タブ \は¥と表示される \n 改行 \t タブ \\ \ (バックスラッシュ) \" " (ダブルクォーテーション) \' ' (シングルクォーテーション) %% % パーセント printf等の書式指定
© Copyright 2024 ExpyDoc