效果
控制台程序
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleBusinessTemplate20234ZQK 8 { 9 internal class Program 10 { 11 static void Main(string[] args)//主函数方法 12 { 13 Console.WriteLine("hello"); 14 15 16 #region 公开需求题目 小艺的英文名 17 // 犹如赋值最初的三个月时候,打开进阶之门的钥匙. 这是根基代码流程的赋值,馒头程序; 进阶赋值犹如曾经的int a =1; 18 19 20 string str_0 = Console.ReadLine().Trim(); // 1 接收用户的输入 21 22 //int k = int.Parse(str_0); 23 24 int k = Convert.ToInt32(str_0);// 2 接收到的字符串转换为整数类型; 25 26 string str_1 = Console.ReadLine().Trim();// 2 接收用户的输入 字母名字; 27 string name = str_1;// 2-1 接收到的字符串赋值给名字。 28 29 Program objsol = new Program();// 3-1 类的对象 用实例化出来的对象调用当前这个类中的方法 30 31 string result = objsol.solution(k, name);// 3 自定义方法,以及方法的调用; 32 33 Console.WriteLine(result); 34 35 36 37 38 #endregion 39 40 Console.ReadLine(); 41 } 42 /// <summary> 43 /// 返回字符串类型的值数据内容; 44 /// </summary> 45 /// <param name="k"></param> 46 /// <param name="name"></param> 47 /// <returns></returns> 48 /// 返回值内容water设计 1 49 public string solution(int k, string name) 50 { 51 string result = ""; 52 53 // TODO: 请在此编写代码 54 55 name = "name1"; 56 57 result=name; 58 59 60 61 return result; 62 } 63 64 65 } 66 }
标签:result,Console,string,System,英文名,小艺,using,控制台,name From: https://www.cnblogs.com/zhuiqiuzhuoyueyouminxing/p/17359028.html