码迷,mamicode.com
首页 > 编程语言 > 详细

小学生趣味C++编程第34课 生命周期与素数

时间:2020-04-14 00:38:46      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:using   stream   class   lse   baidu   std   趣味   iostream   tps   

小学生c++编程资料

链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 
提取码:uqm9 

#include<iostream>
using namespace std; 
int main()
{
  long long i,n; 
  bool flag;
  cout<<"n=";
  cin>>n;
  flag=true;
  for(i=2;i<n;i++)
    if(n%i==0) 
    {
      flag=false;
      break;
    } 
  if(flag) cout<<"是素数";
  else cout<<"不是素数";
  return 0;
}

  

小学生趣味C++编程第34课 生命周期与素数

标签:using   stream   class   lse   baidu   std   趣味   iostream   tps   

原文地址:https://www.cnblogs.com/kixiaoyuan/p/12695136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!