Number system program code to convert of Decimal numbers to Octal numbers in Java
Dec2Oct { public static void main(String args[]) { int decN=2520, octN=0, i=1, j, tmp; tmp=j=decN; while(j>0) { octN=...
Dec2Oct { public static void main(String args[]) { int decN=2520, octN=0, i=1, j, tmp; tmp=j=decN; while(j>0) { octN=...
class Dec2Bin { public static void main(String args[]) { int decN=137, binN=0, i=1, j, tmp; tmp=j=decN; while(j>0) { ...
class MatrixMultiplication { public static void main(String args[]) { int a[][]={{1,2,3},{4,5,6},{7,8,9}},b[][]={{1,2,1},{2,4,6},{7,2...
import java.util.Scanner; public class PrimePattern { public static boolean isPrime(int n) { int i; for(i=2;i<n;i++) if(n%i...
import java.util.Scanner; public class maxAndMin2nd { public static void main(String args[]) { Scanner sc=new Scanner(System.in); ...
ONLINE TEST OF FULL COURSE (FOR STUDENTS GSEB: XII STD.) TEXT BOOK EXERCISE CONTENT Click here to start test.
ONLINE TEST OF CH NO. 4, 5 AND 6 (FOR STUDENTS GSEB: XII STD.) 0 Click here to start test.
#include<iostream> #include<iomanip> using namespace std; bool isPrime(int n) { if (n==1) return false; else { for(int ...
#include<iostream> #include<iomanip> using namespace std; bool isPrime(int n) { if (n==1) return false; else { for(int ...
OPERATORS: =========== - Unary - Binary Arithmetic Operators ---------------------- + Addition - Subtraction * Multiplication / Divi...
#Binary Search a=[5,7,11,13,16,19,23,27,30,34,38,40,41,42,45] n=len(a) beg=0 last=n-1 print(a) srch=int(input('Enter the number to searc...
Download the File. Click here to Watch the Explanation & Developing Video