📄 ch7_03.cs
字号:
using System;
using System.IO;
class CH7_3
{
public static void Main()
{
Console.WriteLine("Enter a string: ");
string s = Console.ReadLine();
Console.WriteLine("You entered [{0}]", s );
Console.WriteLine("Enter a number: ");
int i = Console.ReadLine().ToInt16();
Console.WriteLine("You entered [{0}]", i );
double dollars = 1234.56;
Console.WriteLine("Formatted Output: {0}",
dollars.Format("C", null));
// Read in a single character
Console.Write("Enter a character: ");
int c = Console.Read();
Console.WriteLine("You entered: {0}", (char)c );
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -