عرض المشاركات من أكتوبر, ٢٠١٨
C Program to Find ASCII Value of a Character In C programming, a character variable holds ASCII value (an integer number between 0 an 127) rather than character itself. You will learn how to find ASCII value of a characte…
PYTHON Python is an interpreted high-level programming language for general-purpose programming. Created by Guido van Rossum and first released in 1991, Python has a design philosophy that emphasizes code readabili…
URI Online Judge |1001 Extremely Basic Description : Read 2 variables, named A and B and make the sum of these two variables, assigning its result to the variable X . Print X as shown below. Print endline aft…
How to Highlight Job Skills on a Resume Learn how to make your application reflect your employer's ideal candidate with these resume skills examples. Your resume is not about you. Sure, it has your name at the top a…
Tang family gift supports MIT.nano, MIT Quest for Intelligence $20 million gift names imaging suite in new facility, creates catalyst fund. The Tang family of Hong Kong has made a $20 million gift to MIT to name the Ta…
Square-free number A square-free number is a natural number that contains no powers greater than 1 in its prime factorization . In other words, if x is our number, and is the prime factorization of x into r d…
How to Find Good Number in C program.? What is Good Number? A number is called a square free number if there does not exist a number greater than 1, whose square divides the number evenly/perfectly. For example, …
Find The Good Number : Code : #include #include int isSquareFree(int n) { int i; for(i=2; i<=n; i++) if(n%i==0) if(n%(i*i)==0) return 0; …