Вы находитесь на странице: 1из 6

OF (SHOW THE DAY OF BIRTH FROM DATE OF BIRTH)

Submitted in the partial fulfillment of the Degree of Bachelor of Technology (In tegrated) In Computer Science and Engineering SUBMITTED BY: HARPREET SINGH Reg. No.10802469 Roll. No. R246A26 SUBMITTED TO Department of Computer Science and Engineering Lovely Professional University Ph agwara GUIDED BY: Miss Su hdilpreet Kaur

ACKNOWLEDGEMENT I ta e this opportunity to present my votes of than s to all those guidepost who really acted as lightening pillars to enlighten our way throughout this project that has led to successful and satisfactory completion of this study. We are really grateful to our HOD Mr. Rohit Dhand for providing us with an oppor tunity to underta e this project in this university and providing us with all th e facilities. We are highly than ful to Miss Su hdilpreet Kaur for her active su pport, valuable time and advice, whole-hearted guidance, sincere cooperation and pains-ta ing involvement during the study and in completing the assignment of p reparing the said project within the time stipulated. Lastly, We are than ful to all those, particularly the various friends , who hav e been instrumental in creating proper, healthy and conductive environment and i ncluding new and fresh innovative ideas for us during the project, their help, i t would have been extremely difficult for us to prepare the project in a time bo und framewor . HARPREET SINGH Reg. No. 10802469 Roll. No. R246A26

TABLE OF CONTANTS

1. 2. i. ii. 3. 4. 5. 6. 7.

Introduction Proposed system Description System requirements Requirement Analysis System Design Source code Testing Future scope of project

INTRODUCTION In the existing system, most of the records are maintained on paper. It becomes very inconvenient to modify the data. In the existing system, here is a possibil ity that the same data in different registers may have different values which me ans the entries of the same data do not match. This inconsistent state does not supply the concrete information which poses a problem in the case information re lated to particular search record. Our project is very useful. User is no longer required to chec his register in search of records, as now it can be searched over the software by choosing some options. The user need not to type in most of the information. He/she is just re quired to enter the desired options. On the whole it liberates the user from ee ping lengthy manual records. In a nutshell, it abates the wor load of an organi zation. In today s world, no one li es to perform calculations on calculator or manually whe n computer is there. Every one wants his/her wor to be done by computer automat ically and displaying the result for further manipulations. PROPOSED SYSTEM The following documentation is a project the Name of detailed summary of all the drawbac s of the old system system overcomes these shortcomings. The new system ta ous factors while designing a new system. It eeps into al bandwidth available for the new system. The foremost of is the Need and Requirements of the User. DESCRIPTION Before developing software we eep following things in mind that we can develop powerful and quality software PROBLEM STATEMENT o Problem statement was to design a module: o Which is user friendly o Which will restrict the user from accessing other user s data? o Which will help user in viewing his data and privileges? o Which will help the administrator to handle all the changes? the term paper allotted and how the new proposed es into account the vari the account the Economic thing that is ta en care

. It is a

FUNCTIONS TO BE PROVIDED: The system will be user friendly and completely menu driven so that the users sh all have no problem in using all options. o The system will be efficient and fast in response. o The system will be customized according to needs.

SYSTEM REQUIRMENTS Operating system: MS Windows XP or Windows Vista Language: C Language Processor: Pentium IV Processor RAM: 512 MB Hard dis : 5 GB REQUIREMENT ANALYSIS This process is adopted when management of the system development, Personnel dec ide that the particular system needs improvement. The system development life cy cle is the set of activities, carried out by the analyst, designers and users to develop and implement a system. The systems that are present in the nature foll ow common life cycle pattern. For example consider the raining system. Initially the rain falls into the river, river flows into sea, the sea water evaporates t o form vapors, the vapors form clouds which again bring rain. Similarly consider a man made system initially a system is analyzed, designed and made operational by the efforts of system analysis. After successful operation or a number of us ers, the system becomes less and less effective by change in the environment. So these changes have to be incorporated in to the system by minor modifications. So the general activities from the life cycle of the system are given below: Select ion and identification of the system to be studied Preliminary study Defining the system Design and development of the system Implementation of the system SYSTEM DESIGN Then we began with the design phase of the system. System design is a solution, a HOW TO approach to the creation of a new system. It translates system requirements i nto ways by which they can be made operational. It is a translational from a use r oriented document to a document oriented programmers. For that, it provides th e understanding and procedural details necessary for the implementation. Here we use Flowchart to supplement the wor ing of the new system. The system thus made should be reliable, durable and above all should have least possible maintenanc e costs. It should overcome all the drawbac s of the Old existing system and mos t important of all meet the user requirements. SOURCE CODE #include<stdio.h> #include<stdlib.h> #include<conio.h>

main() { clrscr(); int d,m,y,year,month,day,i,n; printf("Enter how many times you want to run this program : "); scanf("%d",&n); for(i=1;i<=n;i++) { printf("Enter the date : "); scanf("%d%d%d",&d,&m,&y); if( d>31 || m>12 || (y>1900 || y<=2000) ) { printf("INVALID INPUT"); getch(); exit(0); } year = y-1900; year = year/4; year = year+y-1900; switch(m) { case 1: case 10: month = 1; brea ; case 2: case 3: case 11: month = 4; brea ; case 7: case 4: month = 0; brea ; case 5: month = 2; brea ; case 6: month = 5; brea ; case 8: month = 3; brea ; case 9: case 12: month = 6; brea ; } year = year+month; year = year+d; day = year%7; switch(day) { case 0: printf("Day is SATURDAY"); brea ; case 1: printf("Day is SUNDAY"); brea ;

case 2: printf("Day is MONDAY"); brea ; case 3: printf("Day is TUESDAY"); brea ; case 4: printf("Day is WEDNESDAY"); brea ; case 5: printf("Day is THURSDAY"); brea ; case 6: printf("Day is FRIDAY"); brea ; } } getch(); return 0; } TESTING Testing is the major control measure used during software development. Its basic function is to detect errors in the software. During requirement analysis and d esign, the output is a document that is usually textual and no executable. After the coding phase, computer programs are available that can be executed for test ing purpose. This implies that testing not only, has to uncover errors introduce d during coding, but also errors introduced during previous phase. Thus the goal of testing is to uncover the requirements, design and coding errors in the prog rams. So after testing the outputs of my project are as follows:

Enter how many times do you want to run this program 1 Enter the date 05-11-1989 Day is SUNDAY. FUTURE SCOPE OF THE PROJECT Our project will be able to implement in future after ma ing some changes and mo difications as we ma e our project at a very low level. So the modifications tha t can be done in our project are: If we use this program in big code program then we can get more good results tha n what will we get now? We can use this program in astrology or if we concentrat e more on this project than we can also find the time of birth from this program .

References: www.google.com www.sourcecodeworld.com

Вам также может понравиться