欢迎来到萧静默的博客

书山有路勤为径,学海无涯苦作舟。
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 35 下一页
摘要: 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 萧静默 阅读(1510) 评论(3) 推荐(0)
摘要: using System; namespace ConsoleApp3 { struct WuGong { public string Name; public int Attack; } class Program { static void Main(string[] args) { WuGon 阅读全文
posted @ 2019-11-07 15:12 萧静默 阅读(869) 评论(0) 推荐(0)
摘要: using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int[] a = { 1, 2, 3, 4, 5, 6 };//省略的数组声明方法 for (int i = 0; i < 阅读全文
posted @ 2019-11-06 16:50 萧静默 阅读(189) 评论(0) 推荐(0)
摘要: using System; namespace program { enum WeekDays { a,//0 b,//1 c = 11,//11 赋值以后就变成11,不赋值就是2 d,//12 e,//13 f,//14 g//15 }//不能输入数字 struct student { publi 阅读全文
posted @ 2019-11-06 14:42 萧静默 阅读(466) 评论(0) 推荐(0)
摘要: 每个ABAP在写代码的时候,我们都不可避免的要使用到嵌套循环,虽然我们有时候能避免掉,也有无可避免的时候,这个时候就体现我们开发人员的经验和水平的时候。 如何更快的提升ABAP程序的性能,我们开始分析一下如下的代码: REPORT ZABAPHOME. TYPES: STR_VBAK TYPE ST 阅读全文
posted @ 2019-11-05 16:08 萧静默 阅读(1131) 评论(0) 推荐(0)
摘要: using System; namespace program { class program1 { static void Main(string[] args) { int a = 100; int b = 100; Console.WriteLine("下面使用竖式计算结果"); Consol 阅读全文
posted @ 2019-11-05 15:51 萧静默 阅读(445) 评论(0) 推荐(0)
摘要: 原文链接:https://www.cnblogs.com/learnning/p/10647174.html 主要内容 内联声明 构造表达式 内表操作 Open SQL 其他 本文列出了ABAP新语法的一些使用方式,供大家学习参考。 内联声明 代码实现: *& * 主题一:内联声明 * 语法:DAT 阅读全文
posted @ 2019-11-04 17:26 萧静默 阅读(10805) 评论(0) 推荐(3)
摘要: using System; namespace program { class program1 { static void Main(string[] args) { program1 fenshu = new program1(); fenshu.Panduan(); program1 tian 阅读全文
posted @ 2019-11-04 15:29 萧静默 阅读(842) 评论(0) 推荐(0)
摘要: using System; namespace program { class program1 { static void Main(string[] args) { int a = 4, b = 5, c = 6; int p = (a + b + c) / 2; doub... 阅读全文
posted @ 2019-11-01 14:33 萧静默 阅读(255) 评论(0) 推荐(0)
摘要: using System; namespace HELLO { class Program { int week; int y, m, d; static void Main(string[] args) { int y, m, d; Console.WriteLine("请输入年月日"); Console.WriteLine("现在请输入年份"); y = int.Parse(Console.R 阅读全文
posted @ 2019-10-31 17:41 萧静默 阅读(716) 评论(2) 推荐(0)
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 35 下一页