一、问题描述
输入一个数,判断其是否为素数
二、设计思路
1.输入一个数a;
2.用循环统计从1到他本身因数count个数
3.若count为2,则输出yes,反之输出no
三、程序流程图
四、代码实现
#include<iostream>
using namespace std;
int main(){
int a,count=0;
cin>>a;
for(int i=1;i<=a;i++){
if(a%i==0)
count++;
}
if(count==2)
cout<<"yes"<<endl;
else
cout<<"no"<<endl;
return 0;
}
标签:count,cout,int,第三天,打卡,输入 From: https://www.cnblogs.com/zeyangshuaige/p/17316356.html