using System;class Constants{ static void Main() { const double stala1 = 7.67 ; const double stala2 = 10.97; int c = pi+g; Console.WriteLine (" ініціалізація: {} ", stala1.ToString ); Console.WriteLine (" ініціалізація: {} ", stala2.ToString, c.ToString );Console.ReadLine();} }
Unhandled Exception: System.FormatException: Input string was not in a correct format. at System.String.ParseFormatSpecifier (System.String str, System.Int32& ptr, System.Int32& n, System.Int32& width, System.Boolean& left_align, System.String& format) [0x00000] at System.String.FormatHelper (System.Text.StringBuilder result, IFormatProvider provider, System.String format, System.Object[] args) [0x00000] at System.String.Format (IFormatProvider provider, System.String format, System.Object[] args) [0x00000] at System.String.Format (System.String format, System.Object arg0) [0x00000] at System.IO.TextWriter.Write (System.String format, System.Object arg0) [0x00000] at System.IO.TextWriter.WriteLine (System.String format, System.Object arg0) [0x00000] at System.IO.SynchronizedWriter.WriteLine (System.String format, System.Object value) [0x00000] at System.Console.WriteLine (System.String format, System.Object arg0) [0x00000] at myInt.Main (System.String[] args) [0x00000]
... Console.WriteLine (" ініціалізація першої сталої:: {0} ", stala1.ToString ); Console.WriteLine (" ініціалізація другої сталої: {1} ", stala2.ToString); Console.WriteLine ("Сума двох сталих : {2}", c.ToString );Console.ReadLine();} }