发布网友 发布时间:2022-05-26 21:49
共5个回答
热心网友 时间:2023-11-05 15:36
#include<stdio.h>
#include<math.h>
int zshu(int x)//判断x是不是素数。zshu代表素数,即质数。
{
int i;
i=2;
if(x==2)//x是素数 。
return 1;
else if(x==1)//x不是素数 。
return 0;
else
{
while(i<x)
{
if(x%i==0)
{
break;
return 0;//x不是素数 。
}
i++;
if(i>=x)
return 1;//x是素数 。
}
}
}
int main()//主函数。
{
int N;//N一个正整数N。
scanf("%d",&N);
int a[1000];//定义数组,便于储存N个数。
int j;
for(j=0;j<N;j++)
scanf("%d",&a[j]);
for(j=0;j<N;j++)
{
if(zshu(a[j])==1)
printf("Yes\n");//是素数。
if(zshu(a[j])==0)
printf("No\n");//不是素数。
}
}
scanf()函数用法:
输出的值只是空格前面的字符是因为scanf函数的输入格式错误,输入参数的变量前需要加&。
scanf("%s",s);改为scanf("%s",&s);
scanf的用法是:scanf("格式控制字符串",输入参数一,输入参数二);
格式控制字符串包含:格式控制说明,普通字符。
1、格式控制字符串表示输入的格式,(int型用%d,float用%f,double型用%lf)
2、普通字符:在输出数据的时候,按照原样输出的字符,如:"fahr=%d,celsius=%d\n"中的fahr=,celsius=。
3、输入的参数是变量的地址,所以要在变量前面加&。
热心网友 时间:2023-11-05 15:36
#include <stdio.h>热心网友 时间:2023-11-05 15:37
#include<iostream>热心网友 时间:2023-11-05 15:37
var n,j:longint;热心网友 时间:2023-11-05 15:38
#include <stdio.h>