用C#编写一个判断质数的程序,能在Microsoft Visual Studio 2005运行的、谢谢,

用C#编写一个判断质数的程序,能在Microsoft Visual Studio 2005运行的、谢谢,,第1张

楼上的方法不可取啊,这样判断太多次数了。我该一下

void istrue(String val)

{

int num=0

try{

num=Convert.ToInt32(val)

}catch{

label2.Text="必须输入数字"

return

}

if(num<=0){

label2.Text="必须大于0"

return

}

//质数只要不能被2,3,5,7整除。

if(mun==2 || num==3 || num==7 || num==5)

label2.Text="是质数"

else if(mun%2==0 || mun%3==0 || mun%7==0 ||mun%5==0 )

label2.Text="不是质数"

else

label2.Text="是质数"

}

}

#include<iostream>

#include<cstring>

using namespace std

void main()

{

char str[100]

int count1=0,count2=0,count3=0

cout<<"input the string:"<<endl

cin>>str

int size=strlen(str)

int i=0

while(i<size)

{

if(str[i]>='a'&&str[i]<='z')

count1++

if(str[i]>='A'&&str[i]<='Z')

count2++

if(str[i]>='0'&&str[i]<='9')

count3++

i++

}

cout<<"the stirng has lowercase letter's amount: "<<count1<<endl

cout<<"the stirng has capital letter's amount: "<<count2<<endl

cout<<"the stirng has digital letter's amount: "<<count3<<endl

}

1、在visual studio当中创建一个C#控制台应用程序,选择新建项目,然后选择visual C#,再选中控制台应用程序,输入项目名称,选择位置,确定即可。

2、创建完成之后,在program.cs中最上方加写using System.IO,如图所示,注意后面的分号也要加:

3、然后代码如下图所示,判断C盘根目录下是否存在C#程序设计文件夹

4、运行之后,因为此时C盘根目录下没有这个文件夹,所以提示不存在。

5、在C盘根目录下创建C#程序设计文件夹,

6、此时因为C盘目录下已经创建了这个文件夹,所以再次运行时,显示存在这个文件夹。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/12137907.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-21
下一篇 2023-05-21

发表评论

登录后才能评论

评论列表(0条)

保存