【多选题】请读以下程序段,选出正确的输出:(请留意记录本题中的类型转换方法convert,增加知识点) int a, b, temp; Console.WriteLine("请输入两个整数"); a = Convert.ToInt16(Console.ReadLine()); Console.Write( "a={0}" ,a); b = Convert.ToInt16(Console.ReadLine()...
【简答题】以下程序的输出结果为 ( ) 。 import java.io.*; public class Abc{ public static void main(String args[ ]){ AB s = new AB("Hello!","good"); System.out.println(s.toString( )); } } class AB { ...