Giter Club home page Giter Club logo

codinasion-archive / codinasion-programme Goto Github PK

View Code? Open in Web Editor NEW
62.0 62.0 147.0 2.31 MB

An open source codebase for sharing programming solutions.

Home Page: https://codinasion.vercel.app/programme

License: MIT License

C 13.85% Python 8.49% C++ 11.67% C# 18.32% Java 16.96% Go 9.26% JavaScript 13.05% PHP 3.72% Julia 3.19% Rust 0.36% Kotlin 1.13%
c c-sharp codinasion codinasion-project cpp go golang good-first-project hacktoberfest java javascript js python

codinasion-programme's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

codinasion-programme's Issues

X Power Y

Title of article

Write a C programme to compute the X raised to power Y i.e. x^y

Additional information

Input:  2 3
Output: 8
Input:  3 3
Output: 27

Code of Conduct

Simple Interest Calculator

Title of article

Write a Python programme to calculate simple interest.

Additional information

P : Principle Amount
T : Time Period
R : Rate of Interest

Enter P : 5000
Enter T : 10
Enter R : 5

Simple Interest : 2500

Code of Conduct

Maximum of Numbers

Title of article

Write a C programme to find the maximum of numbers.

Additional information

Input:  2 4 1 16 6
Output: 16
Input:  12 15 5 21
Output: 21

Code of Conduct

Square of a Number

Title of article

Write a C Programme to print square of a number.

Additional information

Input  : 5
Output : 25

Code of Conduct

Sum of Digits

Title of article

Write a Python program to print sum of digits.

Additional information

Input:  2332
Output: 10
Input:  23
Output: 5

Code of Conduct

Print Pattern 2

Title of article

Write a C programme to print the given pattern.

Additional information

For n : 3

  *
 * *
* * *
 * *
  *

For n : 5

    *
   * *
  * * *
 * * * *
* * * * *
 * * * *
  * * *
   * *
    *

Code of Conduct

Add Two Numbers

Title of article

Write a C programme to add two numbers.

Additional information

Input:  5 3
Output: 8

Code of Conduct

Factorial

Title of article

Write a Python program to print factorial of a number.

Factorial of N = N * (N-1) * (N-2) * ... * 1

Additional information

Input  : 5
Output : 120

Code of Conduct

Even Numbers

Title of article

Write a C programme to print first n even numbers.

Additional information

Input: 5
Output: 0 2 4 6 8

Code of Conduct

Print Pattern 1

Title of article

Write a C programme to print the given pattern.

Additional information

For n : 5

* * * * *
  * * * *
    * * *
      * *
        *

Code of Conduct

Average of Numbers

Title of article

Write a C programme to calculate the average of numbers.

Additional information

Input:  2 3 4
Output: 3
Input: 1 2 3 4 5
Output: 3

Code of Conduct

Check prime number

Code of Conduct

Title of article

Write a c program to check prime number.

Additional information

Input  : 8
Output : Not prime number
Input  : 7
Output : Prime number

Simple Interest Calculator

Title of article

Write a C programme to calculate simple interest.

Additional information

P : Principle Amount
T : Time Period
R : Rate of Interest

Enter P : 5000
Enter T : 10
Enter R : 5

Simple Interest : 2500

Code of Conduct

Euler's Number

Title of article

Write a C programme to compute the value of Euler's Number.

Additional information

1 + 1/1! + 1/2! + 1/3! + ... + 1/n!

Code of Conduct

Decimal to Binary

Title of article

Write a c program to convert decimal number to binary.

Additional information

Input:  8
Output: 1000
Input:  5
Output: 101

Code of Conduct

Rupee to Paise

Title of article

Write a C programme to convert rupee to paise.

Additional information

Input:  15.95
Output: 1595

Code of Conduct

Number Triangle Pattern

Title of article

Write a Python program to print the pattern.

Additional information

Input : 5

Output :

    1
   121
  12321
 1234321
123454321

Code of Conduct

Decimal to Binary

Title of article

Write a Python program to convert decimal number to binary.

Additional information

Input:  8
Output: 1000
Input:  5
Output: 101

Code of Conduct

Sum of Digits

Title of article

Write a c program to print sum of digits.

Additional information

Input:  2332
Output: 10
Input:  23
Output: 5

Code of Conduct

Multiply Two Numbers

Title of article

Write a C programme to multiply two numbers.

Additional information

Input:  5 4
Output: 20

Code of Conduct

Number Triangle Pattern

Title of article

Write a c program to print the pattern.

Additional information

Input : 5

Output :

    1
   121
  12321
 1234321
123454321

Code of Conduct

Fibonacci series using recursion

Title of article

Write a Python program to print Fibonacci series.

Additional information

Input  : 10
Output : 0 1 1 2 3 5 8 13 21 34

Code of Conduct

Fibonacci Pattern

Title of article

Write a c program to print Fibonacci pattern.

Additional information

Input : 5

Output :

1
1 1	
1 1 2	
1 1 2 3	
1 1 2 3 5

Code of Conduct

Palindrome number

Title of article

Write a Python program to check palindrome number.

Additional information

Input  : 123
Output : Not palindrome number
Input  : 121
Output : Palindrome number

Code of Conduct

Palindrome number

Code of Conduct

Title of article

Write a c program to check palindrome number.

Additional information

Input  : 123
Output : Not palindrome number
Input  : 121
Output : Palindrome number

Print Pattern 3

Title of article

Write a C programme to print the given pattern.

Additional information

For n : 3

x x x
x   x
x x x

For n : 5

x x x x x
x       x
x       x
x       x
x x x x x

Code of Conduct

Hello World

Title of article

Write a python programme to print Hello World !!!

Additional information

Hello World !!!

Code of Conduct

Fibonacci series without using recursion

Code of Conduct

Title of article

Write a C program to print fibonacci series without using recursion.

Additional information

Input  : 10
Output : 0 1 1 2 3 5 8 13 21 34

Matrix Multiplication

Title of article

Write a Python program to print multiplication of 2 matrices.

Additional information

First matrix

1  1  1
2  2  2 
3  3  3 

Second matrix

1  1  1
2  2  2 
3  3  3 

Product matrix

6  6  6
12 12 12
18 18 18

Code of Conduct

Armstrong number

Title of article

Write a Python program to check Armstrong number.

Additional information

Armstrong number is a number that is equal to the sum of cubes of length of its digits.

Examples

  • 0 = 0^1
  • 1 = 1^1
  • 153 = 1^3 + 5^3 + 3^3
  • 370 = 3^3 + 7^3 + 0^3
  • 9474 = 9^4 + 4^4 + 7^4 + 4^4

Programme

Input:  153
Output: armstrong number
Input:  121
Output: not a armstrong number

Code of Conduct

Multiply Two Numbers

Title of article

Write a Python programme to multiply two numbers.

Additional information

Input:  5 4
Output: 20

Code of Conduct

Number to Strings

Title of article

Write a c program to convert number to strings.

Additional information

Input:  51
Output: five one
Input:  201
Output: two zero one

Code of Conduct

Reverse of a Number

Title of article

Write a Python program to print reverse of a given number.

Additional information

Input:  1234
Output: 4321
Input:  6512
Output: 2156

Code of Conduct

Alphabet Triangle Pattern

Title of article

Write a Python program to print the pattern.

Additional information

For n=3

  A
 ABA
ABCBA

For n=5

    A
   ABA
  ABCBA
 ABCDCBA
ABCDEDCBA

Code of Conduct

Harmonic Series

Title of article

Write a C programme to calculate the sum of following harmonic series for a given value of n.

Additional information

1 + 1/2 + 1/3 + 1/4 + ... + 1/n

Code of Conduct

Hello World !!!

Title of article

Write a C programme to print Hello World !!!

Additional information

Hello World !!!

Code of Conduct

Swap two numbers

Title of article

Write a c program to swap two numbers.

Additional information

Input:  a=10 b=20
Output: a=20 b=10

Code of Conduct

Armstrong number

Title of article

Write a c program to check armstrong number.

Additional information

Armstrong number is a number that is equal to the sum of cubes of length of its digits.

Examples

  • 0 = 0^1
  • 1 = 1^1
  • 153 = 1^3 + 5^3 + 3^3
  • 370 = 3^3 + 7^3 + 0^3
  • 9474 = 9^4 + 4^4 + 7^4 + 4^4

Programme

Input:  153
Output: armstrong number
Input:  121
Output: not a armstrong number

Code of Conduct

Minimum of Numbers

Title of article

Write a C programme to find the minimum of numbers.

Additional information

Input:  2 21 34 1 78 0 3
Output: 0
Input:  12 6 7 3 5
Output: 3

Code of Conduct

Alphabet Triangle Pattern

Title of article

Write a c program to print the pattern.

Additional information

For n=3

  A
 ABA
ABCBA

For n=5

    A
   ABA
  ABCBA
 ABCDCBA
ABCDEDCBA

Code of Conduct

Fibonacci Pattern

Title of article

Write a Python program to print Fibonacci pattern.

Additional information

Input : 5

Output :

1
1 1	
1 1 2	
1 1 2 3	
1 1 2 3 5

Code of Conduct

Matrix Multiplication

Title of article

Write a c program to print multiplication of 2 matrices.

Additional information

First matrix

1  1  1
2  2  2 
3  3  3 

Second matrix

1  1  1
2  2  2 
3  3  3 

Product matrix

6  6  6
12 12 12
18 18 18

Code of Conduct

Swap two numbers

Title of article

Write a Python program to swap two numbers.

Additional information

Input:  a=10 b=20
Output: a=20 b=10

Code of Conduct

Reverse of a Number

Title of article

Write a c program to print reverse of a given number.

Additional information

Input:  1234
Output: 4321
Input:  6512
Output: 2156

Code of Conduct

Factorial

Code of Conduct

Title of article

Write a c program to print factorial of a number.

Factorial of N = N * (N-1) * (N-2) * ... * 1

Additional information

Input  : 5
Output : 120

Add Two Numbers

Title of article

Write a Python programme to add two numbers.

Additional information

Input:  5 3
Output: 8

Code of Conduct

Fibonacci series using recursion

Code of Conduct

Title of article

Write a c program to print fibonacci series using recursion.

Additional information

Input  : 10
Output : 0 1 1 2 3 5 8 13 21 34

Check prime number

Title of article

Write a Python program to check prime number.

Additional information

Input  : 8
Output : Not prime number
Input  : 7
Output : Prime number

Code of Conduct

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.