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盘目录下已经创建了这个文件夹,所以再次运行时,显示存在这个文件夹。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)