Java Stream API — Even Numbers (Full Screen) Java Stream API — Get Even Numbers Example 1 — Filter even numbers from a list Creates a list, uses Stream to filter evens, and prints them. Copy import java.util.*; import java.util.stream.*; public class EvenNumbersStream { public static void main(String[] args) { // Create a list of numbers List<Integer> numbers = Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10); // Use Stream API to filter even numbers List<Integer> evenNumbers = numbers.stream() .filter(n -> n % 2 == 0) .collect(Collectors.toList()); // Print the even numbers System.out.println( "Even numbers: " + evenNumbers); } } Example 2 — Use IntStream.rangeClosed ...
In this C-program we will check the number is Krishnamurthy number(i.e: krishnamurthy number is a number which is equal to the sum of the factorials of it's digits, example:145=1!+4!+5!) or not. The number will be taken from the user.
input:
The number(i.e : 567,610,7899 etc.)output:
The number will be Krishnamurthy or not
CODE---->
#include<stdio.h>
#include<stdlib.h>
int main()
{
int i,n,a,r,c=0,s;
printf(" Please,Enter a number : ");
scanf("%d",&n);
if(n==0)
{
printf("\n %d is not a Krishnamurthy Number.",n);
exit(0);
}
a=n;
while(n>0)
{
r=n%10;
s=1;
for(i=r;i>=1;i--)
s=s*i;
c=c+s;
n=n/10;
}
if(c==a)
printf("\n %d is a Krishnamurthy Number.",a);
else
printf("\n %d is not a Krishnamurthy Number.",a);
return 0;
}
Download the C-Program file of this Program.
RESULT :
Please,Enter a number : 145 145 is a Krishnamurthy Number. -------------------------------- Process exited after 2.354 seconds with return value 0 Press any key to continue . . .
Images for better understanding :
Word count is an usefull tool to count Word, Line, Page and Character in multiple files and also you can calculate amount and generate reports. word count tool
ReplyDelete