摘要:
using System; namespace ConsoleApp3 { struct WuGong { public string Name; public int Attack; } class Program { static void Main(string[] args) { WuGon 阅读全文
摘要:
using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int[] a = { 1, 2, 3, 4, 5, 6 };//省略的数组声明方法 for (int i = 0; i < 阅读全文
摘要:
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 阅读全文
摘要:
每个ABAP在写代码的时候,我们都不可避免的要使用到嵌套循环,虽然我们有时候能避免掉,也有无可避免的时候,这个时候就体现我们开发人员的经验和水平的时候。 如何更快的提升ABAP程序的性能,我们开始分析一下如下的代码: REPORT ZABAPHOME. TYPES: STR_VBAK TYPE ST 阅读全文
摘要:
using System; namespace program { class program1 { static void Main(string[] args) { int a = 100; int b = 100; Console.WriteLine("下面使用竖式计算结果"); Consol 阅读全文
摘要:
原文链接:https://www.cnblogs.com/learnning/p/10647174.html 主要内容 内联声明 构造表达式 内表操作 Open SQL 其他 本文列出了ABAP新语法的一些使用方式,供大家学习参考。 内联声明 代码实现: *& * 主题一:内联声明 * 语法:DAT 阅读全文
摘要:
using System; namespace program { class program1 { static void Main(string[] args) { program1 fenshu = new program1(); fenshu.Panduan(); program1 tian 阅读全文
摘要:
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... 阅读全文
摘要:
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 阅读全文
摘要:
【知识梳理】 - 类是一个抽象的存在,就像工业生产中的图纸一样 - 构造函数是一个类的初始化过程 【课堂要求】 - 大致了解类的概念 - 了解构造函数的作用 阅读全文