Prime number program in C
Output:
- A prime number is a whole number greater than 1 whose only factors are 1 and itself. A factor is a whole number that can be divided evenly into another number. The first few prime numbers are 2, 3, 5, 7, 11, 13, 17, 19, 23 and 29.
- Numbers that have more than two factors are called composite numbers.
#1: Prime number program in c using for loop
- #include <stdio.h>
- void main()
- {
- int n1, n2,j, flag;
- long int i;
- printf("Enter First numbers(intevals): ");
- scanf("%d", &n1);
- printf("Enter Second numbers(intevals): ");
- scanf("%d", &n2);
- printf("Prime numbers between %d and %d are: ", n1, n2);
- for(i=n1+1; i<n2; ++i)
- {
- flag=0;
- for(j=2; j<=i/2; ++j)
- {
- if(i%j==0)
- {
- flag=1;
- break;
- }
- }
- if(flag==0)
- printf("%ld ",i);
- }
- }
- Enter First numbers(intevals): 1
- Enter Second numbers(intevals): 500
- Prime numbers between 1 and 500 are: 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67
- 71 73 79 83 89 97 101 103 107
- 109 113 127 131 137 139 149 151 157 163 167 173 179 181 191 193 197 199 211 223 227 229
- 233 239 241 251 257 263 269 271
- 277 281 283 293 307 311 313 317 331 337 347 349 353 359 367 373 379 383 389 397 401 409
- 419 421 431 433 439 443 449 457
- 461 463 467 479 487 491 499
- Process returned 500 (0x1F4) execution time : 4.833 s
- Press any key to continue.
No comments