C#
Alworm
一个行走在Code世界的旅行者
展开
-
c#简单的通讯录
(一)功能介绍1)实现添加联系人2)实现查找联系人3)实现修改联系人4)实现删除联系人5)实现退出功能(二)功能实现代码:using System;using System.Collections;namespace MyClass{ class Program { static void Main(string[] args) ...原创 2019-09-18 19:32:58 · 4416 阅读 · 2 评论 -
C#练习之判断闰年
(一)题目要求从键盘输入一个年份,判断是否为闰年。如果是闰年输出“yes”,否则输出”no”.输入19961998输出yesno(二)代码using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication2{ class Program ...原创 2019-09-19 12:46:00 · 806 阅读 · 0 评论 -
C#练习之数列的规则
(一)题目描述一数列的规则如下: 1、1、2、3、5、8、13、 21、…求第30位数是多少?(二)代码using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication2{ class Program { static void M...原创 2019-09-19 12:48:29 · 654 阅读 · 0 评论 -
C#练习之打印出所有"水仙花数
(一)题目描述打印出所有"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该本身。例如:153是一个水仙花数,因为153=13+53+3^3。 Output:153?????????输入无输出所有的水仙花数,从小的开始。每行一个(二)代码using System;using System.Collections.Generic;using System...原创 2019-09-19 12:53:41 · 3787 阅读 · 0 评论 -
C#练习之判断字符串是否为回文
(一)题目描述编写程序,判断输入的一个字符串是否为回文。若是则输出“Yes”,否则输出“No”。所谓回文是指順读和倒读都是一样的字符串。输入abcddcba输出Yes(二)代码using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication3{ ...原创 2019-09-19 12:56:26 · 2620 阅读 · 0 评论 -
C#练习之三个整数和、积与平均值
(一)题目描述给出三个整数,请你设计一个程序,求出这三个数的和、乘积和平均数。输入输入只有三个正整数a、b、c。输出输出一行,包括三个的和、乘积、平均数。 数据之间用一个空格隔开,其中平均数保留小数后面两位。(二)样例输入输入1 2 3输出6 6 2.00(三)代码using System;using System.Collections.Generic;...原创 2019-09-19 12:59:54 · 2779 阅读 · 1 评论 -
C#练习之字符逆序
(一)题目描述将一个字符串str的内容颠倒过来,并输出。str的长度不超过100个字符。输入输入包括一行。 第一行输入的字符串。输出输出转换好的逆序字符串。(二)样例输入输入I am a student输出tneduts a ma I(三)代码using System;using System.Collections.Generic;using System.T...原创 2019-09-19 13:02:41 · 513 阅读 · 0 评论 -
C#多例模式之限制对象个数
(一)题目描述最多创建三个对象,单例模式的变种(二)代码测试代码:using System;using System.Collections;namespace MultitonLimit{ class Program { static void Main(string[] args) { for(int i ...原创 2019-09-23 22:55:36 · 566 阅读 · 0 评论