今天做了几个小小的练习,和大家分享一下.
1.用*打印出等腰三角形,代码如下:
static void Main(string[] args) { int n = 5; for (int i = 1; i <= n; i++)//n是指总行数 { for (int j=1;j
由于等腰三角形是1,3,5,7....,找规律就好了
2. 编写一个程序,输入一个整数,判断其为几位数(例如100是三位,-99是两位)
static void Main(string[] args) { string a = Console.ReadLine(); int count = 0; for (int i = 0; i < a.Length; i++)//转成字符数组 { Console.WriteLine(a[i]); if (a[i] != '+' && a[i] != '-')//判断符号 { count++; } } Console.WriteLine("是:{0}", count); }
3.编写一个通用的人员类(Person),该类具有姓名(Name)、年龄(Age)、性别(Sex)、等属性,然后对Person类继承得到一个学生类(Student),该类能够计算学生的5门成绩的平均成绩,最后在main函数中对Student类功能进行验证;
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp6 { class Program { class People { public string Name { get; set; } public int Age { get; set; } public string Sex { get; set; } } class Student : People { public double Ave(params int[] nums) {//可变参数 return nums.Average();//求平局值 } } static void Main(string[] args) { Student s = new Student(); s.Name = "丛翊风"; s.Age = 21; s.Sex = "男"; int[] a = { 98, 89, 67, 75, 100 }; Console.WriteLine(s.Name + " 的年龄是:" + s.Age + " 性别是:" + s.Sex + " 成绩是:" + s.Ave(a)); Console.Read(); } } }
4.写一个方法,从键盘上输入三个数,用三元运算符(?:)把最大数找出来
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp6 { class Program { static int Max(int a,int b,int c) { return (a > b) ? ( a > c ? a : c ):( b > c ? b : c ); } static void Main(string[] args) { string a = Console.ReadLine(); string b = Console.ReadLine(); string c = Console.ReadLine(); int a1 = int.Parse(a); int b1 = int.Parse(b); int c1 = int.Parse(c); Console.WriteLine(Max(a1, b1, c1)); Console.Read(); } } }
以上这些题,肯定有不同的解决方法,我的代码也是非常的不好,但是是初学吗,以后会优化的,希望大家多多补充