摘要: Console.WriteLine(); names.Add("Maria"); names.Add("Bill"); names.Remove("Ana"); foreach (var name in names) { Console.WriteLine($"Hello {name.ToUpper 阅读全文
posted @ 2024-03-05 23:00 paoPaoLong_liu 阅读(6) 评论(0) 推荐(0) 编辑
摘要: //求圆的面积 double radius = 9.0; double area = Math.PI * radius * radius; Console.WriteLine(area); // 阅读全文
posted @ 2024-03-05 22:41 paoPaoLong_liu 阅读(2) 评论(0) 推荐(0) 编辑
摘要: Sub 圆角矩形1_Click() Range("a1") = 1 Range("a2") = 2 Range("a3") = 3 Range("a4") = 4 Cells(1, 2) = "吃了吗?" Cells(2, 2) = "吃炸酱面了" Cells(3, 2) = "贵庚了?" Cell 阅读全文
posted @ 2024-03-05 11:13 paoPaoLong_liu 阅读(15) 评论(0) 推荐(0) 编辑