您好,登錄后才能下訂單哦!
這篇文章主要介紹了C#中Console.Read()方法的案例分析,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
Console.Read()方法用于從標準輸入流中讀取下一個字符。當用戶鍵入一些輸入字符時,此方法基本上阻止其返回。一旦用戶按ENTER鍵,它就會終止。
語法:
public static int Read();
返回值:返回輸入流中的下一個字符,如果當前沒有要讀取的字符,則返回負數(-1)。
例外:如果發生I / O錯誤,此方法將給出IOException。
以下程序說明了上述方法的使用:
示例1:
// C# program to illustrate the use // of Console.Read Method using System; namespace GFG { class Program { static void Main(string[] args) { int x; Console.WriteLine("Enter your Character to get Decimal number"); // using the method x = Console.Read(); Console.WriteLine(x); } } }
輸出:
示例2:
// C# program to illustrate the use // of Console.Read Method using System; namespace GFG { class Program { static void Main(string[] args) { // Write to console window. int x; Console.WriteLine("Enter your Character to get Decimal number"); x = Console.Read(); Console.WriteLine(x); // Converting the decimal into character. Console.WriteLine(Convert.ToChar(x)); } } }
輸出:
感謝你能夠認真閱讀完這篇文章,希望小編分享C#中Console.Read()方法的案例分析內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。