• Android

    Get all android stuffs here.You will find latest android news,tips,developers tools and resources here..

    Read More
  • Be an Expert in Programming

    Here you will find lot of programming books,tutorials,resources.Different tips and trick in programming.Common programming problems and their solve etc...

    Read More
  • Movies

    Get somethig eztra from this blog. Get all kinds of movie review,download link and much more

    Read More

Wednesday 14 October 2015

CCE ASSIGNMENT ON GRADSHEET PROGRAM

Download Code>>

How to import on netbeans:
1.First download and save the file from the above link.Do not extact the zip file.Save it in Desktop.
2. open netbeans
3.Click file on the left corner of netbeans menue bar
4.Click import from the drop-down menue
5.Select from Zip
6.Browse the zip file downloaded from above link
7.Click import

The file succesfully imported to your netbeans as a project.
Now you can open different classes as your own netbeans project

Comment if you have any problem.I'll be more than happy to solve.
Thanks 
Happy coding
-SUDIPTO BARAL
 CSE
PSTU



Sunday 27 September 2015

PSTU Student Database DEVELOPER Preview


This is the Technical preview of PSTU Student Database. Download it,Istall and Let me Know your thoughts. Thanks
DOWNLOAD

Friday 4 September 2015

URI Online Judge | 1250 KiloMan solve in C

#include<stdio.h>
#include<string.h>
int main()
{
    int hits[1000],i,testCase,numberOfHits,count=0;
    char position[10000];
    scanf("%d",&testCase);
    while(testCase--)
    {
        count=0;
        scanf("%d",&numberOfHits);
        for(i=0;i<numberOfHits;i++)
        {
            scanf("%d",&hits[i]);
        }
        scanf("%s",position);
        for(i=0;i<numberOfHits;i++)
        {
            if(hits[i]>0&&hits[i]<=2&&position[i]=='S')
            {
                count++;
            }
            else if(hits[i]>2&&position[i]=='J')
            {
                count++;
            }
        }
        printf("%d\n",count);
    }
    return 0;
}

URI Online Judge | 1366 Sticks Game solve in C

#include<stdio.h>
int main()
{
    int c,v,testCase,total,rectangle;
 
    do
    {
        scanf("%d",&testCase);
        if(testCase>0)
        {
            total=0;
            while(testCase--)
            {
                scanf("%d%d",&c,&v);
                if(v%2!=0)
                    total=total+(v-1);
                else
                    total=total+v;
            }
            rectangle=total/4;
            printf("%d\n",rectangle);
        }
 
    }
    while(testCase!=0);
    return 0;
}