欢迎来到萧静默的博客

书山有路勤为径,学海无涯苦作舟。
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 31 下一页
摘要: 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 萧静默 阅读(864) 评论(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 萧静默 阅读(183) 评论(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 萧静默 阅读(460) 评论(0) 推荐(0) 编辑
摘要: 每个ABAP在写代码的时候,我们都不可避免的要使用到嵌套循环,虽然我们有时候能避免掉,也有无可避免的时候,这个时候就体现我们开发人员的经验和水平的时候。 如何更快的提升ABAP程序的性能,我们开始分析一下如下的代码: REPORT ZABAPHOME. TYPES: STR_VBAK TYPE ST 阅读全文
posted @ 2019-11-05 16:08 萧静默 阅读(1101) 评论(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 萧静默 阅读(425) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://www.cnblogs.com/learnning/p/10647174.html 主要内容 内联声明 构造表达式 内表操作 Open SQL 其他 本文列出了ABAP新语法的一些使用方式,供大家学习参考。 内联声明 代码实现: *& * 主题一:内联声明 * 语法:DAT 阅读全文
posted @ 2019-11-04 17:26 萧静默 阅读(10481) 评论(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 萧静默 阅读(830) 评论(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 萧静默 阅读(249) 评论(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 萧静默 阅读(706) 评论(2) 推荐(0) 编辑
摘要: 【知识梳理】 - 类是一个抽象的存在,就像工业生产中的图纸一样 - 构造函数是一个类的初始化过程 【课堂要求】 - 大致了解类的概念 - 了解构造函数的作用 阅读全文
posted @ 2019-10-25 17:26 萧静默 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 31 下一页