0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

mindの研究 その88

Posted at

概要

mindが、謎なので調べてみた。
練習問題やってみた。

練習問題

c#をコンパイル、実行せよ。

サンプルコード


出力ファイルは ファイル。

メインとは
「hello.cs」で 出力ファイルを 新規オープンし
「using System;」で 出力ファイルに 一行書き込み
「public class HelloWorld {」で 出力ファイルに 一行書き込み
「    static public void Main () {」で 出力ファイルに 一行書き込み
「        Console.WriteLine ("Hello World!!");」で 出力ファイルに 一行書き込み
「    }」で 出力ファイルに 一行書き込み
「}」で 出力ファイルに 一行書き込み
出力ファイルを クローズし
「C:\Windows\Microsoft.NET\Framework\v4.0.30319\csc hello.cs」を プログラム実行
「hello」を プログラム実行
。




実行結果

>cs0
Microsoft (R) Visual C# Compiler version 4.8.9232.0
for C# 5
Copyright (C) Microsoft Corporation. All rights reserved.

This compiler is provided as part of the Microsoft (R) .NET Framework, but only supports language versions up to C# 5, which is no longer the latest version. For compilers that support newer versions of the C# programming language, see http://go.microsoft.com/fwlink/?LinkID=533240

Hello World!!

以上

0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?