C# 结构 方法

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _05结构  
  8. {  
  9.     public struct Person  
  10.     {  
  11.         public string _name;//字段  
  12.         public int _age;  
  13.         public Gender _gender;  
  14.     }  
  15.   
  16.     public enum Gender  
  17.     {   
  18.         男,  
  19.         女  
  20.     }  
  21.   
  22.     class Program  
  23.     {  
  24.         static void Main(string[] args)  
  25.         {  
  26.             //XX大学管理系统  
  27.             //姓名、性别、年龄、年级  //5000  20000  
  28.             //string zsName = "张三";  
  29.             //int zsAge = 21;  
  30.             //char zsGender = '男';  
  31.             //int zsGrade = 3;  
  32.   
  33.              string s = "123";  
  34.   
  35.             Person zsPerson;  
  36.             zsPerson._name = "张三";  
  37.             zsPerson._age = 21;  
  38.             zsPerson._gender = Gender.男;  
  39.   
  40.   
  41.             Person lsPerson;  
  42.             lsPerson._name = "李四";  
  43.             lsPerson._age = 22;  
  44.             lsPerson._gender = Gender.女;  
  45.   
  46.   
  47.             Console.WriteLine(zsPerson._name);  
  48.             Console.WriteLine(lsPerson._name);  
  49.             Console.ReadKey();  
  50.   
  51.         }  
  52.     }  
  53. }  
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _10方法  
  8. {  
  9.     class Program  
  10.     {  
  11.         static void Main(string[] args)  
  12.         {  
  13.             //闪烁  播放一段特殊的背景音乐  屏幕停止  
  14.             Program.PlayGame();  
  15.             Program.WuDi();  
  16.             Program.PlayGame();  
  17.             Program.PlayGame();  
  18.             Program.PlayGame();  
  19.             Program.PlayGame();  
  20.             Program.WuDi();  
  21.             Console.ReadKey();  
  22.               
  23.              
  24.         }  
  25.   
  26.         /// <summary>  
  27.         /// 正常玩游戏  
  28.         /// </summary>  
  29.         public static void PlayGame()  
  30.         {  
  31.             Console.WriteLine("超级玛丽走呀走,跳呀跳,顶呀顶");  
  32.             Console.WriteLine("超级玛丽走呀走,跳呀跳,顶呀顶");  
  33.             Console.WriteLine("超级玛丽走呀走,跳呀跳,顶呀顶");  
  34.             Console.WriteLine("超级玛丽走呀走,跳呀跳,顶呀顶");  
  35.             Console.WriteLine("超级玛丽走呀走,跳呀跳,顶呀顶");  
  36.             Console.WriteLine("突然,顶到了一个无敌");  
  37.         }  
  38.         /// <summary>  
  39.         /// 无敌  
  40.         /// </summary>  
  41.         public static void WuDi()  
  42.         {  
  43.             Console.WriteLine("屏幕开始闪烁");  
  44.             Console.WriteLine("播放无敌的背景音乐");  
  45.             Console.WriteLine("屏幕停止");  
  46.         }  
  47.   
  48.     }  
  49. }  
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _11_方法练习  
  8. {  
  9.     class Program  
  10.     {  
  11.         static void Main(string[] args)  
  12.         {  
  13.             //计算两个整数之间的最大值  
  14.             int max = Program.GetMax(1, 3);  
  15.             Console.WriteLine(max);  
  16.            // Array.Sort()  
  17.             // int n = Convert.ToInt32("123");  
  18.   
  19.             string str = Console.ReadLine();  
  20.   
  21.             Console.ReadKey();  
  22.         }  
  23.   
  24.   
  25.         /// <summary>  
  26.         /// 计算两个整数之间的最大值并且将最大值返回  
  27.         /// </summary>  
  28.         /// <param name="n1">第一个整数</param>  
  29.         /// <param name="n2">第二个整数</param>  
  30.         /// <returns>将最大值返回</returns>  
  31.         public static int GetMax(int n1, int n2)  
  32.         {  
  33.             return n1 > n2 ? n1 : n2;  
  34.         }  
  35.   
  36.     }  
  37. }  
shashou47

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: