大家好,欢迎来到IT知识分享网。
电脑绝技教你22天学精Csharp之第五天补充3
10continue
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _10continue
{
class Program
{
static void Main(string[] args)
{
while (true)
{
Console.WriteLine(“Hello World”);
// break;
continue;
Console.WriteLine(“Hello World”);
Console.WriteLine(“Hello World”);
}
Console.ReadKey();
}
}
}
11continue练习
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _11continue练习
{
class Program
{
static void Main(string[] args)
{
//练习1:用 while continue实现计算1到100(含)之间的除了能被7整除之外所有整数的和。
//int sum = 0;
//int i=1;
//while (i <= 100)
//{
// if (i % 7 == 0)
// {
// i++;
// continue;
// }
// sum += i;
// i++;
//}
//Console.WriteLine(sum);
//Console.ReadKey();
//找出100内所有的素数
//素数/质数:只能被1和这个数字本身整除的数字
//2 3 4 5 6 7
//7 7%1 7%2 7%3 7%4 7%5 7%6 7%7 6%2
for (int i = 2; i <= 100; i++)
{
bool b = true;
for (int j = 2; j <i; j++)
{
//除尽了说明不是质数 也就没有再往下继续取余的必要了
if (i % j == 0)
{
b = false;
break;
}
}
if (b)
{
Console.WriteLine(i);
}
}
Console.ReadKey();
//6 6%2 6%3
}
}
}
12三元表达式
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _12三元表达式
{
class Program
{
static void Main(string[] args)
{
////计算两个数字的大小 求出最大的
//Console.WriteLine(“请输入第一个数字”);
//int n1 = Convert.ToInt32(Console.ReadLine());
//Console.WriteLine(“请输入第二个数字”);
//int n2 = Convert.ToInt32(Console.ReadLine());
//// 语法:
////表达式1?表达式2 :表达式3
//int max = n1 > n2 ? n1 : n2;
//Console.WriteLine(max);
////if (n1 > n2)
////{
//// Console.WriteLine(n1);
////}
////else
////{
//// Console.WriteLine(n2);
////}
//Console.ReadKey();
//提示用户输入一个姓名 只要输入的不是老赵 就全是流氓
Console.WriteLine(“请输入姓名”);
string name = Console.ReadLine();
string result = name == “老赵” ? “淫才呀” : “流氓呀”;
Console.WriteLine(result);
Console.ReadKey();
//if (name == “老赵”)
//{
// Console.WriteLine(“淫才呀”);
//}
//else
//{
// Console.WriteLine(“流氓呀”);
//}
Console.ReadKey();
}
}
}
13、随机数
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _13_随机数
{
class Program
{
static void Main(string[] args)
{
//产生随机数
//1、创建能够产生随机数的对象
//Random r = new Random();
//while (true)
//{
// //2、让产生随机数的这个对象调用方法来产生随机数
// int rNumber = r.Next(1, 11);
// Console.WriteLine(rNumber);
// Console.ReadKey();
//}
//输入名字随机显示这个人上辈是什么样的人
//思路:
//1、创建能够产生随机数的对象
//2、产生随机数 (1,7)
Random r = new Random();
while (true)
{
int rNumber = r.Next(1, 7);
Console.WriteLine(“请输入一个姓名”);
string name = Console.ReadLine();
switch (rNumber)
{
case 1: Console.WriteLine(“{0}上辈子是吃翔的”, name);
break;
case 2: Console.WriteLine(“{0}上辈子是拉翔的”, name);
break;
case 3: Console.WriteLine(“{0}上辈子就是一坨翔”, name);
break;
case 4: Console.WriteLine(“{0}上辈子是大汉奸”, name);
break;
case 5: Console.WriteLine(“{0}上辈子是拉皮条的”, name);
break;
case 6: Console.WriteLine(“{0}上辈子是救苦救难的活菩萨”, name);
break;
}
Console.ReadKey();
}
}
}
}
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/59253.html