String類的用法
提問人:劉冬梅發(fā)布時間:2020-10-13
1.string.Format實現字符串的格式化
2.輸入兩個整數,輸出他們的實數除商,并輸出上的第二位小數
static void Main()
{
int i = Convert.ToInt32(Console.ReadLine());
int j = Convert.ToInt32(Console.ReadLine());
double shang = (double)i / j;
string str = string.Format("{0:F3}", shang);
char c = str[str.Length - 2];
Console.WriteLine(c);
Console.Read();
}
繼續(xù)查找其他問題的答案?
相關視頻回答
點擊加載更多評論>>