本文整理汇总了C#中Point3.Printf方法的典型用法代码示例。如果您正苦于以下问题:C# Point3.Printf方法的具体用法?C# Point3.Printf怎么用?C# Point3.Printf使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Point3
的用法示例。
在下文中一共展示了Point3.Printf方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Chapter2
public Chapter2()
{
Point3 a = new Point3(5, 6, 7);
Point3 b = new Point3(10, 10, 10);
Point3 c = new Point3(1, 2, 3);
Point3 d = new Point3(6, 7, 5);
Console.Write("coord point a: ");
a.Printf();
Console.Write("coord point b: ");
b.Printf();
Console.Write("coord point c: ");
c.Printf();
Console.Write("coord point d: ");
d.Printf();
if (a > c) Console.WriteLine("a > c");
if (a < b) Console.WriteLine("a < b");
if (a > d) Console.WriteLine("a > d");
else
if (a < d) Console.WriteLine("a < d");
else Console.WriteLine("point a & d na odnoi okrughnosti");
}