answersLogoWhite

0

56

User Avatar

Sanjay Sanjay

Lvl 2
3y ago

What else can I help you with?

Related Questions

Program for print prime all number from 1 to 100 in foxpro?

Oh, what a lovely request! In FoxPro, you can create a program to print all prime numbers from 1 to 100 by using a loop to check each number for divisibility only by 1 and itself. If it meets this criteria, you can print it out on the screen. Remember, every number is unique and special, just like a happy little tree in a vast forest.


Write a c program to print the 100 to 1 nos?

Write a c program to print the 100 to 1 nos


C program to print nos divisible by 8?

#include #include#define N 100 /* change the upper limit by changing value of N */int main(){int i;clrscr();printf("\nPROGRAM TO PRINT NUMBERS DIVISIBLE BY 8 between 1 and 100\n");for(i=1;i


C program to print all integers between 1 to 100 not divisible by 2 or 3?

#include<stdio.h> #include<conio.h> void main() { clrscr(); for (int i=1;i<=100;i++) { if(i%2 !=0 && i%3 !=0) { printf("\n Numbers that are not divisible by 2 or 3:%d \n ",i); } printf("\n"); } getch(); }


C program to generate numbers from 1 to 100 divisible by 2?

(rand()&50+1)*2


What number is divisible by 87 and 100?

87 is divisible by 1, 3, 29, and 87. 100 is divisible by 1, 2, 4, 5, 10, 20, 25, 50, and 100, therefore the only number divisible by 87 and 100 is 1.


How many numbers are between 1 and 100 are divisible by 5?

There are 98 numbers are between 1 and 100 that are divisible by five.


What numbers is divisible by 1 an 100?

Multiples of 100.


Write a program to accept any number n print the qube of all the number from 1 to n that are divisible by 3?

# Ruby code print 'Enter n: '; n = gets.to_i n.times { | i | puts ( i + 1 ) ** 2 if ( i + 1 ) % 3.0 == 0.0 }


What numbers over 100 are divisible by 1?

All integers are evenly divisible by 1.


How many numbers between 1 and 100 are divisible by 2?

There are 49 numbers between 1 and 100 that are divisible by two.


What numbers 1-100 are divisible by 9?

The numbers divisible by nine up to a 100 are 9,18,27,36,45,54,63,72,81,90,and,99