Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // 名前空間の登録
  2. using System; // 共通データ型と基本クラス(System名前空間)
  3.  
  4. // MainClassの定義
  5. class MainClass
  6. {
  7.  
  8. // Mainメソッドの定義
  9. public static void Main(string[] args)
  10. {
  11.  
  12. // "ABCDE"の出力.
  13. Console.WriteLine("ABCDE"); // Console.WriteLineで"ABCDE"を出力.
  14.  
  15. }
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement