Thursday, April 27, 2017

Monday, April 03, 2017

NCCF 2017






Registration for NCCF 2017

ICT Division of Bangladesh Government is organizing the National Children's Coding Fest 2017 (NCCF 2017) where the students aged between 5-12 years will participate. Considering the age and experience the competition will be based on SCRATCH only ; which is easy to do through a computer or smartphone. The deadline for Registration and Project Submission is April 12, 2017. We welcome you all to take part in NCCF 2017 towards building a true Digital Nation.


Codeforces 556A ( Case of Zeros and Ones )




Codeforces 556A
Case of Zeros and Ones



Problem Link:
http://codeforces.com/problemset/problem/556/A

UVa online judge  problem:11854
(EGYPT)


Problem link:
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2954

Solution:

#include<stdio.h>
int main()
{

LightOJ Problem:1022 (circle in square)

LightOJ Problem :1022

Circle in Squqre


Problem link:
 http://lightoj.com/login_main.php?url=volume_showproblem.php?problem=1022

solution:

#include<stdio.h>
#include<math.h>

UVA:100(3N+1)

                    UVA ONLINE JUDGE
                       Problem:100(3N+1)



Problem link:
https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=36

Solution:


#include<bits/stdc++.h>
using namespace std;

int main()
{

UVa 12578 (10:6:2)

The ACM-ICPC Live Archive

UVa 12578 
( 10:6:2 )


Problem Link: 



Solution:

#include<stdio.h>
#include<math.h>
#define PI acos(-1)
int main()
{

কম্পিউটার প্রোগ্রামিং বই সমস্যা - 4


Problem Link:
http://cpbook.subeen.com/2012/11/rectangle-1.html




Solution:

Solution Link: http://paste.ubuntu.com/24305448/

#include<stdio.h>
int main()
{

কম্পিউটার প্রোগ্রামিং বই সমস্যা - 3

Computer Programming Book

- Problem 03 


Problem link:

http://cpbook.subeen.com/2012/11/count-numbers.html

Solution:

#include<stdio.h>
#include<string.h>
int main()
{

কম্পিউটার প্রোগ্রামিং বই সমস্যা - ১৪,জোড়-বিজোড়-১

link of problem::http://cpbook.subeen.com/2012/11/even-odd-1.html

জোড়-বিজোড় Programming Challenge

ইনপুট

প্রথম লাইনে একটি সংখ্যা থাকবে। সংখ্যাটির মান যত, ততটি লাইনে একটি করে পূর্ণসংখ্যা (0 থেকে 2147483647-এর মধ্যে) দেওয়া থাকবে।

আউটপুট

প্রতিটি পূর্ণসংখ্যার জন্য, সংখ্যাটি জোড় হলে even আর বিজোড় হলে odd প্রিন্ট করতে হবে।

উদাহরণ

ইনপুট:

3
100
0
1111



আউটপুট:

even
even
odd

soliution::

#include<stdio.h>
int main()
{
    int i,n,a[101];
    scanf("%d",&n);
    for(i=0; i<n; i++)
    {
        scanf("%d",&a[i]);
        if(a[i]%2==0 && a[i]>=0)

        {
            printf("even\n");
        }

        else if(a[i]%2!=0 && a[i]>=0)

        {
            printf("odd\n");
        }
    }
    return 0;
}

Some essential functions of C & C++(সি এবং সি++ এর প্রয়োজনীয় ফাংশনসমূহ (বর্ণনা সহ))

সি এবং সি++ এর প্রয়োজনীয় ফাংশনসমূহ (বর্ণনা সহ)
  Function     Description
abs,labs,llabs     computes absolute value of an integer value
fabs     computes absolute value of a floating point value
div,ldiv,lldiv     computes the quotient and remainder of integer division
fmod     remainder of the floating point division operation
remainder     signed remainder of the division operation
remquo     signed remainder as well as the three last bits of the division operation
fma     fused multiply-add operation
fmax     larger of two floating point values
fmin     smaller of two floating point values
fdim     positive difference of two floating point values

nan,nanf,nanl     returns a not-a-number (NaN)