摘要:
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 阅读全文
摘要:
Loop at screen会loop处理屏幕上的每一个组件,并对其做相应的处理。 SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME.PARAMETERS S_DATE TYPE DATUM DEFAULT SY-DATUM MODIF ID OO.SEL 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Text; namespace test { class Program { static void Main(string[] args) { Date birthday = 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Text; namespace test { class Program { static void Main(string[] args) { Time test1 = new 阅读全文
摘要:
using System; namespace test { class Program { static void Main(string[] args) { Cat kitty = new Cat(); // 无参构造函数 Cat1 KITTY = new Cat1("KITTY", 4); C 阅读全文
摘要:
using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { Console.Write("你要输入多少项?"); int a = Convert.ToInt32(Console.Rea 阅读全文
摘要:
using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int b = j1(5); Console.WriteLine(b); int a = j(5); Console.Wri 阅读全文
摘要:
using System; namespace class1 { class program { static void Main(string[] args) { Console.Write("请输入a="); double a = double.Parse(Console.ReadLine()) 阅读全文
摘要:
using System; namespace class1 { class program { static void Main(string[] args) { //值传递引用,实际参数不会变化 Console.Write("请输入a="); double a = double.Parse(Co 阅读全文
摘要:
using System; namespace class1 { class program { static void Main(string[] args) { int[][] arry = new int[2][];//这里的行必须定义好,但是列可以不定义好 arry[0] = new int 阅读全文