- define the problem
- design the solution
- code the program
- test the program
- implement the program
- define the problem
- 2+3=?
- code the programe
- #include <iostream.h>
- #include<conio.h>
- void main()
- {
- int x,y,sum;
- cout<<"input numbers";
- cin>>x>>y;
- sum=x+y
- cout<<sum;
- getch();
- }
- test the program -success
- document the program -success
- implement the program -success
0 comments:
Post a Comment