-
该行双击设置断点,或者使用f9快捷键设置查看全部
-
设置断点(加断点或者取消断点)是F9; 调试的快捷键是F5; 单步执行的快捷键是F10;查看全部
-
设置断点的快捷键是F9查看全部
-
注意:常量在声明时赋值,之后是不能修改的查看全部
-
///是文档注释,只能写在类、方法、属性的前面。不能用来注释单个变量。查看全部
-
f5 调试 ctrl+f5 运行 f9 添加或删除断点 f10 单步执行查看全部
-
人中吕布,马中赤兔。查看全部
-
string [] name =new string [] {“张三”,“李斯”,“王唔”,“赵留”}; int [] score = new int [] {56.74.60.89 }; int a = 0; int x = 0; for ( int i =0; i < score.Length ;i ++) { if ( score [i] > a) { a = score [i]; x = i ; } } Console.WriteLine ( "分数最高的是{0}",name[x]); Console.WriteLine("他考了{0}分",score[x]};查看全部
-
再研究研究查看全部
-
需要再深度理解理解查看全部
-
最后一个增加什么?查看全部
-
Program.cs using system; using system.collections.generic; using system.text; namespace test { class program { static void main(string[] args) { console.writeline(true false);//输出true console.writeline(true false);//输出false console.writeline(false);//输出true } } } 没看明白查看全部
-
Ctrl+F5 带停留(pause)查看全部
-
Console.Write("anything you want"); ///输出语句查看全部
-
流程图图形意义查看全部
举报
0/150
提交
取消