皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【单选题】
剑山是( )插花中常用的固定的工具。
A.
日本式
B.
东方式
C.
西方式
D.
欧美式
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【单选题】下面的C#代码实现一个索引器: class TestIndex { public int[] Elements=new int[100]; public int Elements[int index] { get { retrun Elements[index]; } set { Elements[index]=value; } } } class Class1 { static void Mai...
A.
输出: 0 1 4 9 16
B.
代码“ public int Elements[int index] ”不正确
C.
代码“ Console.WriteLine(ti[cnt].ToStirng)); ”不正确
D.
输出: 1 4 9 16 25
【单选题】某企业年初借得50 000元贷款,10年期,年利率12%,每年末等额偿还。已知年金现值系数(P/A,12%,10)=6502,则每年应付金额为( )元。
A.
.8 849
B.
.5 000
C.
.6 000
D.
.28 251
【单选题】下面程序运行的结果是() class A { public string[] list = new string[10]; public int this[int index] { get { return Convert.ToInt32(list[index]); } set { list[index] = value.ToString(); } } public Hashtable list1...
A.
张三 20
B.
10 20
C.
10 张三
D.
20 10
【单选题】下面的C#代码实现一个索引器: class TestIndex{public int[]Elements=new int[100]; public intElements[int index]{ get{ return Elements[index];}set{ Elements[index]=value;}}} class Class1{ static void Main(string[]arg...
A.
输出: 014916
B.
代码 “ public int Elements[int index] ”不正确
C.
代码 “Console.WriteLine(ti[cnt].ToString());”不正确
D.
输出: 491625
【单选题】某企业年初借得 50 000 元贷款, 10 年期,年利率 12% ,每年末等额偿还。已知年金现值系数( P / A,12%,10 )= 5.6502 ,则每年应付金额为( )元。
A.
8 849
B.
5 000
C.
6 000
D.
28 251
【简答题】//给出程序的运行结果 using System; namespace Page_117 { class C1 { private int TheRealValue = 10; public int MyValue { set { TheRealValue = value; } get { return TheRealValue; } } } class Program { static void...
【单选题】某企业年初借得50 000元贷款,10年期,年利率12%,每年末等额偿还。已知年金现值系数(P/A,12%,10)=5.6502,则每年应付金额为( )元。
A.
8 849.24
B.
5 000
C.
6 000
D.
28 251
【单选题】在C#中,以下代码运行的结果是()。 Hashtable hsStu = new Hashtable(); hsStu.Add(1,2); hsStu.Add(2,4); hsStu.Add(3,6); IDictionaryEnumerator stuEnum = hsStu.GetEnumerator(); int total = 0; while(stuEnum.MoveNext()) { ...
A.
6
B.
12
C.
18
D.
24
【单选题】阅读下面的程序,写出程序输出结果(属性应用) namespace MyClassLib { public class Class1{ private int a=0; private int b=0; public Class1(int pa, int pb){ a = pa;b = pb; } public int A{ set{ if (value > 10) a = value;} get{...
A.
6,-4, 20,10
B.
5,5, 15,15
C.
3,-2, 30,0
D.
10,0, 30,0
【单选题】下面的C#代码实现一个索引器:代码最后的执行结果为( ) class TestIndex{ public int [] Elements = new int [ 100 ]; public int Elements[ int index ] { get {return Elements[ index ];} set {Elements[index] = value;} } } class Cl...
A.
输出:014916
B.
代码“public intElements[int index]”不正确
C.
代码“Console.WriteLine(ti[cnt].ToString());”不正确
D.
输出:491625
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题