欢迎来到萧静默的博客

书山有路勤为径,学海无涯苦作舟。
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 31 下一页
摘要: TYPES: begin of ty_tab , num(3) type i, str(3) type c, end of ty_tab. data: gw_tab TYPE ty_tab , gt_tab TYPE TABLE OF ty_tab WITH HEADER LINE. data: g 阅读全文
posted @ 2019-11-18 10:08 萧静默 阅读(3933) 评论(0) 推荐(1) 编辑
摘要: Loop at screen会loop处理屏幕上的每一个组件,并对其做相应的处理。 SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME.PARAMETERS S_DATE TYPE DATUM DEFAULT SY-DATUM MODIF ID OO.SEL 阅读全文
posted @ 2019-11-15 10:14 萧静默 阅读(1548) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Text; namespace test { class Program { static void Main(string[] args) { Date birthday = 阅读全文
posted @ 2019-11-12 14:55 萧静默 阅读(526) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Text; namespace test { class Program { static void Main(string[] args) { Time test1 = new 阅读全文
posted @ 2019-11-12 14:32 萧静默 阅读(836) 评论(0) 推荐(1) 编辑
摘要: using System; namespace test { class Program { static void Main(string[] args) { Cat kitty = new Cat(); // 无参构造函数 Cat1 KITTY = new Cat1("KITTY", 4); C 阅读全文
posted @ 2019-11-11 16:42 萧静默 阅读(640) 评论(0) 推荐(0) 编辑
摘要: using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { Console.Write("你要输入多少项?"); int a = Convert.ToInt32(Console.Rea 阅读全文
posted @ 2019-11-08 15:52 萧静默 阅读(611) 评论(0) 推荐(0) 编辑
摘要: using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int b = j1(5); Console.WriteLine(b); int a = j(5); Console.Wri 阅读全文
posted @ 2019-11-08 14:39 萧静默 阅读(533) 评论(0) 推荐(0) 编辑
摘要: using System; namespace class1 { class program { static void Main(string[] args) { Console.Write("请输入a="); double a = double.Parse(Console.ReadLine()) 阅读全文
posted @ 2019-11-08 11:22 萧静默 阅读(580) 评论(0) 推荐(0) 编辑
摘要: using System; namespace class1 { class program { static void Main(string[] args) { //值传递引用,实际参数不会变化 Console.Write("请输入a="); double a = double.Parse(Co 阅读全文
posted @ 2019-11-08 10:30 萧静默 阅读(3370) 评论(0) 推荐(0) 编辑
摘要: using System; namespace class1 { class program { static void Main(string[] args) { int[][] arry = new int[2][];//这里的行必须定义好,但是列可以不定义好 arry[0] = new int 阅读全文
posted @ 2019-11-07 17:17 萧静默 阅读(1494) 评论(3) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 31 下一页