摘要

题目链接 难度等级 完成状态 完成分数 最后编辑时间 需要注意
素数判定 ★☆☆☆☆ 答案正确 100 2014/08/16 23:15:07

题意

素数判定。

题解

枚举2~根号n,看是否有因子。

顺带:由于要求输出\t,\n为了避免转义成换行符什么的,斜杠要多打一个。

代码

1430.cpp代码已折叠
展开折叠内容
#include<cstdio>
int main(){
  int u;
  scanf("%d",&u);
  for(int i=2;i*i<=u;++i){
    if(u%i==0){
      printf("\\n");
      return 0;
    }
  }
  printf("\\t");
  return 0;
}

著作权声明[编辑]

关于[编辑]