首頁 >後端開發 >C#.Net教程 >如何在 C# 中將輸入讀取為整數?

如何在 C# 中將輸入讀取為整數?

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB轉載
2023-09-01 16:21:101364瀏覽

如何在 C# 中将输入读取为整数?

要在C#中將輸入讀取為整數,請使用Convert.ToInt32()方法。

res = Convert.ToInt32(val);

讓我們看看如何 -

Convert.ToInt32 將數字的指定字串表示形式轉換為等效的 32 位元有符號整數。

首先,讀取控制台輸入 -

string val;
val = Console.ReadLine();

讀取後,將其轉換為整數。

int res;
res = Convert.ToInt32(val);

讓我們看一個範例 -

範例

 現場示範

using System;
using System.Collections.Generic;

class Demo {
   static void Main() {
      string val;
      int res;
   
      Console.WriteLine("Input from user: ");
      val = Console.ReadLine();

      // convert to integer
      res = Convert.ToInt32(val);

      // display the line
      Console.WriteLine("Input = {0}", res);
   }
}

輸出

Input from user:
Input = 0

以下是輸出。輸入由使用者輸入。

Input from user: 2
Input = 2

以上是如何在 C# 中將輸入讀取為整數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除