【单选题】分析下列代码段,运行结果是什么 pubic s tatic void m ain( S tring [] args) { S tring[] words = new S tring[] {"a","b","c" }; for (String word : words) { word =" abc" ; System.out.println (word); } }
【简答题】分析下列代码段,运行结果是什么?( )。Static void Main(string [] args){string[] words = new string[] {“a”,“b”,“c”};foreach (int word in words){word =“abc”;Console.WriteLine(word);}Console.ReadKey ();}A. a b c B. abc a...