摘要: c1.编程实现判断一个5位数是不是回文数。5位回文数是指个位数字与万位数字相同,十位数字与千位数字相同,如12321是回文数。 static void Main(string[] args) { String sc = Console.ReadLine(); if (sc.Substring(0, 阅读全文
posted @ 2022-03-27 16:15 木_心 阅读(141) 评论(0) 推荐(0)