پروژه های نوشته شده به زبان سی پلاس پلاس
دوستان عزیز یادآوری می کنم که پروژه هایی که در اینجا قرار دارن و یا قرار داده میشوند در سایتهای دیگر با مبالغی حدود 15تا 30 هزار تومان به فروش می رسند!!
برنامه تبدیل عبارات میانوندی به پسوندی
کد:
#include <iostream>
#include <conio>
void pop(char,int*,char*);
void print(char*);
char push(int*,char*);
char in[50],out[50],stack[50],ch;
int main()
{
int top=-1,i,j=0;
clrscr();
cout<<"\n\nPlease enter your prasse:";
cin>>in;
for(i=0;i<50;i++)
{
if((in[i]>96&&in[i]<123)||(in[i]>64&&in[i]<91))
{
out[j]=in[i];
++j;
}
else if(in[i]!=')')
pop(in[i],&top,stack);
else if(in[i]==')')
{
while(top>-1)
{
ch=push(&top,stack);
if(ch!='(')
{
out[j]=ch;
++j;
}
}
}
}
print(out);
print(stack);
getch();
return 0;
}
//*************************************
void pop(char x,int* up,char *stack)
{
*up+=1;
if(*up>49)
cout<<"Sorry Stack Is Full";
else
stack[*up]=x;
}
//*************************************
char push(int *up,char *stack)
{
if(*up<0)
cout<<"\nSorry Stack Is Empety\n\n";
else
*up-=1;
return stack[*up+1];
}
//*************************************
void print(char*s)
{
for(int i=0;i<50;i++)
if(s[i])
cout<<s[i];
}
این برنامه عبارت میانوندی را که با پارانتز اولویت بندی شده را میگیرد و ان را به یک عبارت پسوندی تبدیل می کند.
برنامه کتابخانه که نیازی به توضیح هم نداره!!!
کد:
#include <iostream>
#include <conio>
#include <fstream>
#include <algorithm>
#include <stdio>
#include <stdlib>
# define esc 27
#define enter 13
#define up 72
#define down 80
#define tab 9
class library
{
public:
struct book
{
char name[20];
char writer[20];
char date[15];
char publisher[20];
char subject[20];
int id,price;
}book1,booktemp;
int menu();
char addmenu(int *,char *);
void add();
void searchmenu(int *,char *);
void search();
void show(int*,char*,char *);
void deletmenu(char *);
void delet();
}book;
//***********************main***************************************************
int main()
{
while(1)
{
window(1,1,80,25);
textbackground(0);
textcolor(15);
clrscr();
gotoxy(29,3);
cprintf("WELCOM TO MY LIBRARY");
gotoxy(55,23);
cprintf("*** SPRING OF 1387 **");
int select=book.menu();
switch(select)
{
case 1:book.add();break;
case 2:book.search();break;
case 3:book.delet();
case 4:
cout<<"\a";
window(10,5,70,20);
textbackground(1);
textcolor(15);
clrscr();
gotoxy(15,7);
cprintf("ARE YOU SURE (y/n)?");
char ex=getch();
if(ex==13||ex==121||ex==89)
return 0;
}
}
return 0;
}
//******************************functions***************************************
int library::menu()
{
char item[4][20]={
"1->Insert","2->Search","3->Delet","4->Exit"},key;
int i=0,j=0;
window(10,5,70,20);
textbackground(3);
clrscr();
window(1,1,25,80);
while(1)
{
for(i=0;i<4;i++)
{
textbackground(3);
textcolor(14);
if(i==j)
{
textbackground(1);
textcolor(15);
}
gotoxy(2,2+(2*i));
cprintf("%s",item[i]);
}
gotoxy(2,2+(2*j));
key=getch();
switch(key)
{
case 49:j=0;break;
case 50:j=1;break;
case 51:j=2;break;
case 52:j=3;break;
case up:if(j==0)j=3;else j--;break;
case down:if(j==3)j=0;else j++;break;
case tab:if(j==3)j=0;else j++;break;
case enter:break;
case esc:return 4;
}
if(key==13)break;
}
return j+1;
}
//*****************************************
char library::addmenu(int *j,char *key)
{
char add[7][20]={
"Name :","Writer :","Date publisher :","Price :","publisher :","Subject :","Code:"};
int i,flag=0;
window(21,5,50,20);
textbackground(1);
clrscr();
while(1)
{
for(i=0;i<7;i++)
{
textbackground(1);
textcolor(14);
if(i==*j)
{
textbackground(3);
textcolor(15);
}
gotoxy(2,2+(2*i));
cprintf("%s",add[i]);
}
gotoxy(2,2+(2*(*j)));
*key=getch();
switch(*key)
{
case up:if(*j==0)*j=6;else (*j)--;break;
case down:if(*j==6)*j=0;else (*j)++;break;
case tab:if(*j==6)*j=0;else (*j)++;break;
case enter:break;
case esc:break;
}
if(*key==13||*key==27)break;
}
}
//****************************************************
void library::add()
{
char add[7][20]={
"Name :","Writer :","Date publisher :","Price :","publisher :","Subject :","Code:"},key;
int j=0;
char ch=addmenu(&j,&key);
ofstream file1("C:\\library.dat",ios::app);
if(!file1) cout<<"\ncan not open file";
if(ch==13)
{
gotoxy(2,2+(2*j));textbackground(1);textcolor(14);cprintf("%s",add[j]);
gotoxy(2,2);textbackground(3);textcolor(15);cprintf("%s",add[0]);
gotoxy(8,2);cin.get(book1.name,20);cin.get();
gotoxy(10,4);cin.get(book1.writer,20);cin.get();
gotoxy(18,6);cin.get(book1.date,20);cin.get();
gotoxy(9,8);cin>>book1.price;cin.get();
gotoxy(13,10);cin.get(book1.publisher,20);cin.get();
gotoxy(11,12);cin.get(book1.subject,20);cin.get();
gotoxy(7,14);cin>>book1.id;cin.get();
file1.write((char*)&book1,sizeof(struct book));
file1.close();
}
}
//********************************************************
void library::searchmenu(int*j,char*key)
{
char add[3][20]={"Name :","subject :","Code:"};
int i,flag=0;
window(21,7,50,15);
textbackground(1);
clrscr();
while(1)
{
for(i=0;i<3;i++)
{
textbackground(1);
textcolor(14);
if(i==*j)
{
textbackground(3);
textcolor(15);
}
gotoxy(2,2+(2*i));
cprintf("%s",add[i]);
}
gotoxy(2,2+(2*(*j)));
*key=getch();
switch(*key)
{
case up:if(*j==0)*j=2;else (*j)--;break;
case down:if(*j==2)*j=0;else (*j)++;break;
case tab:if(*j==2)*j=0;else (*j)++;break;
case enter:break;
case esc:break;
}
if(*key==13||*key==27)break;
}
}
//*************************************************************
void library::search ()
{
char add[3][20]={"Name :","subject :","Code:"},ch,n[20];
int i,j,cod;
searchmenu(&j,&ch);
if(ch!=27)
{
switch(j)
{
case 0:gotoxy(8,2);cin.get(n,20);cin.get();i=1;break;
case 1:gotoxy(11,4);cin.get(n,20);cin.get();i=2;break;
case 2:gotoxy(7,6);cin.get(n,20);cin.get();i=3;break;
}
}
int x=atol(n);
show(&x,n,&ch);
}
//*************************************************************
void library::show(int *x,char*n,char *ch)
{
char item[7][20]={
"Name :",
"Writer :",
"Date publisher :",
"Price :",
"publisher :",
"Subject :",
"Code:"
};
if(*ch!=27)
{
ifstream file1("C:\\library.dat",ios::out);
if(!file1) cout<<"\ncan not open file";
int j=0;
if((*x)>0) while(file1.read((char*)&book1,sizeof(struct book)))
if(*x==book1.id)
{
j=1;
booktemp=book1;
break;
}
if(*x==0) while(file1.read((char*)&book1,sizeof(struct book)))
if(strcmp(book1.name,n)==0||strcmp(book1.subject,n)==0)
{
j=1;
booktemp=book1;
break;
}
file1.close();
window(10,5,70,20);
textbackground(6);
clrscr();
if(j==0)
{
textcolor(1);
gotoxy(6,7);
cprintf("!!! NOT FOUND THIS BOOK IN THE LIBRARY !!!");
gotoxy(15,10);
cprintf("PRESS ANY KEY TO COMTINUE :");
}
else
{
for(int i=0;i<7;i++)
{
textcolor(1);
gotoxy(2,(i+1)*2);
cprintf("%s",item[i]);
}
gotoxy(8,2);cprintf("%s",book1.name);
gotoxy(10,4);cprintf("%s",book1.writer);
gotoxy(18,6);cprintf("%s",book1.date);
gotoxy(9,8);cout<<book1.price;
gotoxy(13,10);cprintf("%s",book1.publisher);
gotoxy(11,12);cprintf("%s",book1.subject);
gotoxy(7,14);cout<<book1.id;
}
getch();
}
}
//**********************************************
void library::deletmenu(char *key)
{
window(20,9,35,11);
textbackground(1);
textcolor(14);
clrscr();
textcolor(15);
textbackground(3);
gotoxy(2,2);cprintf("Book code :");
gotoxy(2,2);
*key=getch();
}
//********************************
void library::delet()
{
char add[7][20]={
"Name :",
"Writer :",
"Date publisher :",
"Price :","publisher :",
"Subject :",
"Code:"};
char ch;
int code,i,f;
ofstream file2("C:\\temp.dat",ios::in);
if(!file2) cout<<"\ncan not open file";
ifstream file1("C:\\library.dat",ios::out);
if(!file1) cout<<"\ncan not open file";
deletmenu(&ch);
if(ch!=27)
{
gotoxy(13,2);
cin>>code;
}
while(file1.read((char*)&book1,sizeof(struct book)))
{
if(book1.id!=code)
file2.write((char*)&book1,sizeof(struct book));
if(book1.id==code)
{
window(10,5,70,22);
textbackground(1);
textcolor(15);
clrscr();
gotoxy(10,2);cprintf("PLEASE ENTER NEW INFORMATION OF BOOK");cin.get();
gotoxy(2,4);cprintf("%s",add[0]);cin.get(booktemp.name,20);cin.get();
gotoxy(2,6);cprintf("%s",add[1]);cin.get(booktemp.writer,20);cin.get();
gotoxy(2,8);cprintf("%s",add[2]);cin.get(booktemp.date,20);cin.get();
gotoxy(2,10);cprintf("%s",add[3]);cin>>booktemp.price;cin.get();
gotoxy(2,12);cprintf("%s",add[4]);cin.get(booktemp.publisher,20);cin.get();
gotoxy(2,14);cprintf("%s",add[5]);cin.get(booktemp.subject,20);cin.get();
gotoxy(2,16);cprintf("%s",add[6]);cin>>booktemp.id;cin.get();
file2.write((char*)&booktemp,sizeof(struct book));
}
}//end of while
file1.close();
file2.close();
remove("C:\\library.dat");
rename("C:\\temp.dat","C:\\library.dat");
}
ایجاد منو برای تغییر رنگ پس زمینه
یک منو رسم میکنه که 3تا گزینه داره که هر کدوم یه رنگه و با زدن هر گزینه رنگ پس زمینه عوض میشه.....
[PHP]
#include <stdio.h>
#include <conio.h>
f_lines();
up_key();
down_key();
void main()
{
int i;
char c1,c2;
textbackground(0);
gotoxy(wherex(),11);
f_lines();
do
{
c1=getch();
/*******if insert ENTER key*******/
if (c1==13)
{
if (wherey()==19)
{
textbackground(2);
f_lines();
}
if (wherey()==15)
{
textbackground(1);
f_lines();
}
if (wherey()==11)
{
textbackground(4);
f_lines();
}
}
/*******if insert UP key*******/
if (c1==0)
{
c2=getch();
if (((c1==0) && (c2==72)))
{
up_key();
}
/*******if insert DOWN key*******/
if (((c1==0) && (c2==80)))
{
down_key();
}
}
}while(c1!=27);
}
/***********( FUNCTION )**********/
f_lines()
{
int w,i;
w=wherey();
textcolor(15);
clrscr();
printf("%c",201);
for (i=0; i<78; i++)
{
printf("%c",205);
}
printf("%c",187);
for (i=0; i<23; i++)
{ printf("%c\n",186); }
printf("%c",200);
for (i=0; i<77; i++)
{
printf("%c",205);
}
printf("%c",188);
for (i=2; i<25; i++)
{ gotoxy(80,i);
printf("%c",186); }
/*************** Drow KEY ****************/
/******* Red key *******/
gotoxy(34,9);
printf("%c%c%c%c%c%c%c%c%c%c%c%c",201,205,205,205, 205,205,205,205,205,205,205,187);
gotoxy(34,10);
printf("%c RED %c",186,186);
gotoxy(34,11);
printf("%c%c%c%c%c%c%c%c%c%c%c%c",200,205,205,205, 205,205,205,205,205,205,205,188);
/******* Blue key *******/
gotoxy(34,13);
printf("%c%c%c%c%c%c%c%c%c%c%c%c",201,205,205,205, 205,205,205,205,205,205,205,187);
gotoxy(34,14);
printf("%c Blue %c",186,186);
gotoxy(34,15);
printf("%c%c%c%c%c%c%c%c%c%c%c%c",200,205,205,205, 205,205,205,205,205,205,205,188);
/******* Green key *******/
gotoxy(34,17);
printf("%c%c%c%c%c%c%c%c%c%c%c%c",201,205,205,205, 205,205,205,205,205,205,205,187);
gotoxy(34,18);
printf("%c Green %c",186,186);
gotoxy(34,19);
printf("%c%c%c%c%c%c%c%c%c%c%c%c",200,205,205,205, 205,205,205,205,205,205,205,188);
gotoxy(wherex(),w);
}
up_key()
{
if ((wherey()==19) || (wherey()==15))
{
int k;
k=wherey()-4;
gotoxy(wherex(),k);
}
}
down_key()
{
if ((wherey()==15) || (wherey()==11))
{
int k;
k=wherey()+4;
gotoxy(wherex(),k);
}
} [/PHP]
برنامه ساده برای کار با کلیدهای مکان نما
این برنامه تحت ++Turbo c اجرا میشه و به صورت خیلی ساده کار کردن با کلیدهای مکان نما را در ++ c برای حرکت دادن اشیا نشون میده.
[PHP]
#include <graphics.h>
#include <conio.h>
#include <iostream.h>
#define RIGHT 0x4d /* define keyboard arrow keys */
#define LEFT 0x4b
#define DOWN 0x50
#define UP 0x48
#define ENTER 13
void draw( int, int);
int main(void)
{
int gdriver = DETECT, gmode, errorcode;
initgraph(&gdriver, &gmode, "C:\\tc\\bgi\\");
int x, y;
char c;
x = 50;
y = 300;
setfillstyle(1,1);
circle(x,y,10);
floodfill(x+1,y+1, getmaxcolor());
do
{
c = getch();
if ( c == UP )
{
y-=1;
draw(x, y);
}
if ( c == DOWN )
{
y+=1;
draw(x, y);
}
if ( c == RIGHT )
{
x+=1;
draw(x, y);
}
if ( c == LEFT )
{
x-=1;
draw(x, y);
}
if ( c == ENTER )
{
for ( int i = x; i < getmaxx()+10; i++)
draw( i, y);
}
}while( c != ENTER );
getch();
closegraph();
return 0;
}
void draw( int x , int y)
{
cleardevice();
setfillstyle(SOLID_FILL,BLUE);
circle(x,y,10);
floodfill(x+1,y+1,getmaxcolor());
}
[/PHP]
گرافیک در توربو سی پلاس پلاس
یک برنامه کوچک و جالب برای تمرین توابع گرافیکی در Turbo c++
[PHP]
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#include <time.h>
#include <dos.h>
int main(void)
{
int gdriver = DETECT, gmode, errorcode;
initgraph(&gdriver, &gmode, "C:\\tc\\bgi\\");
int x, y, maxx, maxy, color;
maxx = getmaxx();
maxy = getmaxy();
srand( time ( 0 ) );
for ( int i = 0; i < 500; i++ )
{
if(kbhit()) break;
x = rand() % maxx;
y = rand() % maxy;
color = rand() % 12;
setcolor(color);
for (int xx = 0, yy = 10; xx <= 360; xx+= 5, yy += 5 )
{
pieslice ( x, y, xx, yy, 10);
delay(10);
}
}
getch();
closegraph();
return 0;
}[/PHP]
دترمینان یک ماتریس n در n
برنامه ای برای بدست آوردن دترمینان یک ماتریس n در n
[PHP]
#include <iostream.h>
#include <conio.h>
int calc(int [],int dim);
void revmatrix( int [],int dim);
void main()
{
int matrix[1000];
int dim,temp;
double leftsum,rightsum;
cout<<" PLEASE ENTER MATRIX DIMENSION : ";
cin>>dim;
cout<<"\n\n\n";
for( int i = 0;i<( dim*dim );i ++ )
{
cout<<"ENTER ELEMAN : ";
cin>>temp;
matrix[i] = temp;
clrscr();
cout<<" PLEASE ENTER MATRIX DIMANTION : "<<dim;
cout<<"\n\n\n";
}//for i
if ( dim > 2 )
{
leftsum = calc( matrix , dim );
cout<<"LEFTSUM of the matrix = "<< leftsum <<"\n\n";
revmatrix( matrix , dim );
rightsum = calc( matrix ,dim );
cout<<"RIGHTSUM of the matrix = "<< rightsum <<"\n\n\n\n\n\n" ;
cout<<" ( DETERMINAN OF THE MATRIX = "<< leftsum - rightsum<<" )";
}
else
cout<<" ( DETERMINAN OF THE MATRIX = "<<(matrix[0] * matrix[3] - matrix[1] * matrix[2])<<" )";
getch();
}//end main
/////////////////calc function//////////
int calc( int matrix[ ], int dim )
{
int sum = 0, bul, x = 1;
for( int l = 0; l<( dim*dim );l += ( dim+1 ) )//ghotr asli
x *= matrix[l];
sum = x;
x = 1;
for( int c = 1;c<dim;c ++ )
{
bul=c;
for( int m = 0;m<dim;m ++ )
{
if( ( bul+1 )%dim != 0 )
{
x *= matrix[bul];
bul +=( dim + 1 );
}
else
{
x = x * matrix[bul];
bul += 1;
}
}//for m
sum += x;
x = 1;
}//for c
return sum;
}
////////////////////revmatriv determinan
void revmatrix(int matrix[ ],int dim)
{
int end,temp,counter;
for( int t = dim-1;t <= dim*dim;t = t + dim )
{
end=t;
counter = end -( dim-1 );
while( end > counter )
{
temp = matrix[end];
matrix[end] = matrix[counter];
matrix[counter] = temp;
++ counter;
-- end;
}
}
}
[/PHP]
برنامه پشته به صورت گرافیکی و متنی
بصورت متنی:
[php]
#include <stdio.h>
#include<process.h>
#include <dos.h>
#include<conio.h>
#include<stdio.h>
#define SIZE 5
static struct stack{
int top;
int items[SIZE];
}s1;
void push(struct stack *,int);
int pop(struct stack*);
int stacktop(struct stack*);
int empty(struct stack*);
int search(struct stack *,int);
void insert(struct stack *,int,int);
void replace(struct stack *,int,int);
void del(struct stack *,int);
void printline(void);
void main()
{
char c;
int i,temp;
s1.top=-1;
mark:
clrscr();
gotoxy(28,2);
printf("BASIC STACK OPERATIONS");
gotoxy(34,4); printf("(1) Push");
gotoxy(34,6); printf("(2) Pop");
gotoxy(34,8); printf("(3) Search");
gotoxy(34,10); printf("(4) Insert");
gotoxy(34,12); printf("(5) Replace");
gotoxy(34,14); printf("(6) Delete\n\n");
gotoxy(0,18); printline();
c=getch();
switch (c)
{
case '1': printf("\nWhat element do you wish to push?");
scanf("%d",&temp);
push(&s1,temp);
break;
case '2': pop(&s1);
break;
case '3': printf("\nEnter the element you wish to search?");
scanf("%d",&temp);
printf("\nThe element is at index %d\n",search(&s1,temp));
break;
case '4': printf("\nEnter the POSTION and ELEMENT you wish to insert?");
scanf("%d %d",&i,&temp);
insert(&s1,i,temp);
break;
case '5': printf("\nEnter the POSTION and ELEMENT you wish to replace?");
scanf("%d %d",&i,&temp);
replace(&s1,i,temp);
break;
case '6': printf("\nEnter the POSTION you wish to delete from stack?");
scanf("%d",&temp);
del(&s1,temp);
break;
default : printf("\nInvalid entry! Try again!");
break;
}
for (i=s1.top;i>=0;i--)
printf("\nThe element at position (%d) is %4d",i,s1.items[i]);
printf("\n\nDo you wish to continue?");
c=getch();
if (c=='y')
goto mark;
}
void push(struct stack *sx,int x)
{
if (sx->top==SIZE-1)
{
printf("\n\tSTACT OVERFLOW\n");
getch();
exit(1);
}
sx->items[++sx->top]=x;
}
int pop(struct stack *sx)
{
if (empty(sx))
{
printf("\n\t STACK UNDERFLOW\n");
getch();
exit(1);
}
return(sx->items[sx->top--]);
}
int stacktop(struct stack *sx)
{
return(sx->items[sx->top]);
}
int empty(struct stack *sx)
{
return((sx->top==-1));
}
int search(struct stack *sx,int n)
{
int arr[20];
int i=0,j,result=-1;
for (j=sx->top;!(empty(sx));j--)
{
if (n==stacktop(sx))
{
result=sx->top;
break;
}
arr[i++]=pop(sx);
}
for (j=i-1;j>=0;j--)
push(sx,arr[j]);
return(result);
}
void insert(struct stack *sx,int pos,int ele)
{
int arr[20];
int i=0,j;
for (j=sx->top;j>=pos;j--)
arr[i++]=pop(sx);
push(sx,ele);
for (j=i-1;j>=0;j--)
push(sx,arr[j]);
}
void replace(struct stack *sx,int pos,int ele)
{
int arr[20];
int i=0,j;
for (j=sx->top;j>=pos;j--)
arr[i++]=pop(sx);
push(sx,ele);
for (j=i-2;j>=0;j--)
push(sx,arr[j]);
}
void del(struct stack *sx,int pos)
{
int arr[20];
int i=0,j;
for (j=sx->top;j>pos;j--)
arr[i++]=pop(sx);
pop(sx);
for (j=i-1;j>=0;j--)
push(sx,arr[j]);
}
void printline(void)
{
int i;
for (i=0;i<40;i++)
printf("®¯");
}
[/php]
بصورت گرافیکی:
[php]
#include <stdio.h>
#include <graphics.h>
#include <dos.h>
#include<conio.h>
#include<process.h>
#define SIZE 6
static struct stack{
int top;
int items[SIZE];
}s1;
void push(struct stack *,int);
int pop(struct stack*);
int stacktop(struct stack*);
int empty(struct stack*);
int search(struct stack *,int);
void insert(struct stack *,int,int);
void replace(struct stack *,int,int);
void del(struct stack *,int);
void printline(void);
void startscreen(int,int);
void shell(int,int);
void close(void);
void start_screen();
void press_esc();
int gd=DETECT,gm,maxx,maxy;
void main()
{
char c;
int i,temp;
s1.top=-1;
initgraph(&gd,&gm,"f:\\tc\\bgi");
maxx=getmaxx();
maxy=getmaxy();
startscreen(maxx,maxy);
start_screen();
shell(maxx,maxy);
START:
c=getch();
switch (c)
{
case '1': gotoxy(3,17);
printf("What element do you wish to push?");
scanf("%d",&temp);
push(&s1,temp);
break;
case '2': gotoxy(3,17);
pop(&s1);
break;
case '3': gotoxy(3,17);
printf("Enter the element you wish to search?");
scanf("%d",&temp);
temp=search(&s1,temp);
gotoxy(5,19);
if (temp==-1)
printf("Sorry! No results Found!");
else
printf("The element is at index %d",temp);
getch();
break;
case '4': gotoxy(3,17);
printf("Enter the POSTION and ELEMENT you wish to insert?");
scanf("%d %d",&i,&temp);
insert(&s1,i,temp);
break;
case '5': gotoxy(3,17);
printf("Enter the POSTION and ELEMENT you wish to replace?");
scanf("%d %d",&i,&temp);
replace(&s1,i,temp);
break;
case '6': gotoxy(3,17);
printf("Enter the POSTION you wish to delete from stack?");
scanf("%d",&temp);
del(&s1,temp);
break;
default : gotoxy(3,17);
printf("Invalid entry! Try again!");
break;
}
for (i=0;i<=6;i++)
{
gotoxy(3,17+i);
printf("\t\t\t\t\t\t\t\t\t");
}
gotoxy(3,17);
printf("Do You wish to contine?");
c=getch();
if (c=='y')
{
gotoxy(3,17); printf("\t\t\t\t\t");
goto START;
}
closegraph();
close();
restorecrtmode();
}
void push(struct stack *sx,int x)
{
if (sx->top==SIZE-1)
{
gotoxy(5,22);
printf("\tSTACT OVERFLOW\n");
getch();
return;
}
sx->items[++sx->top]=x;
gotoxy(66,14-2*sx->top);
printf("%d",x);
}
int pop(struct stack *sx)
{
if (empty(sx))
{
gotoxy(5,22);
printf("\t STACK UNDERFLOW\n");
getch();
return(0);
}
gotoxy(66,14-2*sx->top);
printf(" ");
return(sx->items[sx->top--]);
}
int stacktop(struct stack *sx)
{
return(sx->items[sx->top]);
}
int empty(struct stack *sx)
{
return((sx->top==-1));
}
int search(struct stack *sx,int n)
{
int arr[20];
int i=0,j,result=-1;
for (j=sx->top;!(empty(sx));j--)
{
if (n==stacktop(sx))
{
result=sx->top;
break;
}
arr[i++]=pop(sx);
}
for (j=i-1;j>=0;j--)
push(sx,arr[j]);
return(result);
}
void insert(struct stack *sx,int pos,int ele)
{
int arr[20];
int i=0,j;
if (pos>sx->top)
{
gotoxy(3,19);
printf("Invalid Position!");
getch();
return;
}
for (j=sx->top;j>=pos;j--)
arr[i++]=pop(sx);
push(sx,ele);
for (j=i-1;j>=0;j--)
push(sx,arr[j]);
}
void replace(struct stack *sx,int pos,int ele)
{
int arr[20];
int i=0,j;
if (pos>sx->top)
{
gotoxy(3,19);
printf("Invalid Position!");
getch();
return;
}
for (j=sx->top;j>=pos;j--)
arr[i++]=pop(sx);
push(sx,ele);
for (j=i-2;j>=0;j--)
push(sx,arr[j]);
}
void del(struct stack *sx,int pos)
{
int arr[20];
int i=0,j;
if (pos>sx->top)
{
gotoxy(3,19);
printf("Invalid Position!");
getch();
return;
}
for (j=sx->top;j>pos;j--)
arr[i++]=pop(sx);
pop(sx);
for (j=i-1;j>=0;j--)
push(sx,arr[j]);
}
void printline(void)
{
int i;
for (i=0;i<40;i++)
printf("®¯");
}
void startscreen(int x,int y)
{
int i;
sound(1);
setbkcolor(1);
setlinestyle(5,0,2);
rectangle(0,0,x,y);
rectangle(2,2,x-2,y-2);
settextstyle(10,HORIZ_DIR,3);
setcolor(YELLOW);
outtextxy(x/10,y/3,"Loading ....... Please Wait......");
setcolor(LIGHTGRAY);
rectangle(x/8,2*y/3,7*x/8,2*y/3+20);
setcolor(WHITE);
bar(x/8+1,2*y/3+1,7*x/8-1,2*y/3+20-1);
setfillstyle(1,LIGHTBLUE);
delay(2000);
for (i=4;i>=1;i--)
{
bar(x/8+1,2*y/3+1,7*x/8/i-1,2*y/3+20-1);
delay(1000);
}
delay(500);
nosound();
//closegraph();
initgraph(&gd,&gm,"f:\tc\bgi");
}
void shell(int x,int y)
{
int i;
setbkcolor(BLACK);
rectangle(0,0,x,y);
rectangle(2,2,x-2,y-2);
settextstyle(0,HORIZ_DIR,2);
gotoxy(18,2);
setcolor(WHITE);
outtextxy(x/5,y/30,"BASIC STACK OPERATIONS");
textcolor(DARKGRAY);
gotoxy(24,15); printf("Enter (1--6) for Stack Operations");
gotoxy(24,4); printf("(1) Push");
gotoxy(24,6); printf("(2) Pop");
gotoxy(24,8); printf("(3) Search");
gotoxy(24,10); printf("(4) Insert");
gotoxy(24,12); printf("(5) Replace");
gotoxy(24,14); printf("(6) Delete\n\n");
bar(0,y/2+4,x,y/2+6);
setcolor(MAGENTA);
setlinestyle(0,0,3);
line(3*x/4,y/12-7,3*x/4,y/2-7);
line(3*x/4+100,y/12-7,3*x/4+100,y/2-7);
for (i=0;i<7;i++)
{
line(3*x/4,y/2-i*33-7,3*x/4+100,y/2-i*33-7);
gotoxy(55,14-2*i);
if (i<6)
printf("® %d ¯",i);
}
press_esc();
}
void close(void)
{
int mx, my;
/* request auto detection */
int gd= DETECT, gm;
initgraph(&gd,&gm,"f:\\tc\\bgi");
mx = (getmaxx() / 2);
my = (getmaxy() / 2);
//SET baqckground color
setfillstyle(9, 1);
bar(0,0,getmaxx(),getmaxy());
//DRAW a bar, and make it look like a 3d bar
setfillstyle(1,7);
//bar(50,20,600,400);
//DRAW lines for the top and left side
setcolor(15);
line(50,20,600,20);
line(51,21,599,21);
line(50,20,50,400);
line(51,21,51,399);
//DRAW lines for the bottom and right side
setcolor(8);
line(600,20,600,400);
line(599,21,599,400);
line(50,400,600,400);
line(51,399,600,399);
//DRAW two 3D bars for the left and right side
setfillstyle(9,8);
bar(70,40,100,380);
bar(70,40,550,70);
bar(70,350,550,379);
//getch();
bar(545,40,575,380);
//PRINT 3D text CALENDAR
settextstyle(1, 0, 4);
settextjustify(1,1);
setcolor(LIGHTGREEN);
outtextxy(mx+2, my - 46, "Thank You!");
setcolor(LIGHTGREEN);
outtextxy(mx + 1, my - 45, "Thank You!");
setcolor(GREEN);
outtextxy(mx + 2, my - 44, "Thank You!");
//PRINT
settextstyle(2, 0, 5);
setcolor(WHITE);
outtextxy(mx + 1, my + 150, "Copyright www.forum.daneshjuha.org");
getch(); //PAUSE for a while
closegraph();
//initgraph(&gd,&gm,"e:\tc\bgi");
}
//Start
void start_screen()
{
int mx, my;
/* request auto detection */
int gd= DETECT, gm;
initgraph(&gd,&gm,"f:\\tc\\bgi");
mx = (getmaxx() / 2);
my = (getmaxy() / 2);
//SET baqckground color
setfillstyle(9, 1);
bar(0,0,getmaxx(),getmaxy());
//DRAW a bar, and make it look like a 3d bar
setfillstyle(1,7);
//bar(50,20,600,400);
//DRAW lines for the top and left side
setcolor(15);
line(50,20,600,20);
line(51,21,599,21);
line(50,20,50,400);
line(51,21,51,399);
//DRAW lines for the bottom and right side
setcolor(8);
line(600,20,600,400);
line(599,21,599,400);
line(50,400,600,400);
line(51,399,600,399);
//DRAW two 3D bars for the left and right side
setfillstyle(9,8);
bar(70,40,100,380);
bar(70,40,550,70);
bar(70,350,550,379);
//getch();
bar(545,40,575,380);
//PRINT 3D text CALENDAR 2002
settextstyle(1, 0, 4);
settextjustify(1,1);
setcolor(LIGHTGREEN);
outtextxy(mx+2, my - 150, "!...Wel Come...!");
setcolor(LIGHTGREEN);
outtextxy(mx + 1, my - 149, "!...Wel Come...!");
setcolor(GREEN);
outtextxy(mx + 2, my - 148, "!...Wel Come...!");
setcolor(GREEN);
outtextxy(mx + 2, my - 100, "Stack Operations");
//Print 3D Text
setcolor(WHITE);
outtextxy(mx, my-50, "BY");
setcolor(DARKGRAY);
outtextxy(mx, my + 5, "hossein azarpevand");
setcolor(DARKGRAY);
outtextxy(mx + 1, my + 6, "hossein azarpevand");
setcolor(LIGHTGRAY);
outtextxy(mx+1, my + 7, "hossein azarpevand");
//PRINT copyright notice
settextstyle(2, 0, 5);
setcolor(WHITE);
outtextxy(mx + 1, my + 150, "Copyright www.forum.daneshjuha.org");
getch(); //PAUSE for a while
closegraph();
initgraph(&gd,&gm,"e:\tc\bgi");
}
void press_esc()
{
settextstyle(2, 1, 5);
setcolor(RED);
outtextxy(600, 60,"..Press Esc to Exit..");
}[/php]
برنامه ای که 10 جمله را خوانده تعداد حروف، ارقام و کلمات را تعیین کند
برنامه ای که 10 جمله را خوانده تعداد حروف، ارقام و کلمات را تعیین کند :
[PHP] #include <stdio.h>
#include <conio.h>
#include <iostream.h>
int words,alphabets,numbers;
void getcount(char s[])
{
int state=0;
char chars[]=" !()*+,./:;<=>?[\\]^`{}~";
for (int pos=0;s[pos];pos++)
{
if (((s[pos]>='A') && (s[pos]<='Z'))
|| ((s[pos]>='a') && (s[pos]<='z')))
{
state=1;
alphabets++;
}
else if ((s[pos]>='0') && (s[pos]<='9'))
{
state=1;
numbers++;
}
else
for (int chpos=0;chars[chpos];chpos++)
if (chars[chpos]==s[pos])
{
if (state)
words++;
state=0;
break;
}
}
if (state)
words++;
}
int main()
{
int i;
char s[500];
clrscr();
words=0;
alphabets=0;
numbers=0;
for (i=0;i<10;i++)
{
cout << "Please enter a text #" << (i+1) << " : " << endl;
gets(s);
getcount(s);
}
cout << endl << "Count of words = " << words << endl;
cout << endl << "Count of alphabet chars = " << alphabets << endl;
cout << endl << "Count of numeric chars = " << numbers << endl;
cout << endl << "Press any key to continue." << endl;
getch();
return 0;
}
[/PHP]
برنامه ای که که دو ماتریس (3 در 4) و (4 در 5) را در هم ضرب کند
برنامه ای که دو ماتریس (3 در 4) و (4 در 5) را در هم ضرب کند
[php] #include <stdio.h>
#include <conio.h>
void main()
{
int i,j,k;
char matrixA[3][4], matrixB[4][5], matrixC[3][5];
clrscr();
for (i=0;i<3;i++)
for (j=0;j<4;j++)
{
printf("A[%d,%d] = ", i+1, j+1);
scanf ("%d", &matrixA[i][j]);
}
for (i=0;i<4;i++)
for (j=0;j<5;j++)
{
printf("B[%d,%d] = ", i+1, j+1);
scanf ("%d", &matrixB[i][j]);
}
for (i=0;i<3;i++)
for (j=0;j<5;j++)
{
matrixC[i][j]=0;
for (k=0;k<4;k++)
matrixC[i][j]+= matrixA[i][k]*matrixB[k][j];
}
clrscr();
for (i=0;i<3;i++)
{
for (j=0;j<5;j++)
printf("%5d ", matrixC[i][j]);
printf("\n\n");
}
getch();
}[/php]
پیاده سازی پشته با لیست پیوندی
[PHP]#include <iostream>
#include <conio>
struct stack
{
int value;
struct stack *top;
};
void insert(struct stack *,int);
int remove(stack *,bool*);
void print(stack *);
struct stack sample;
int main()
{
char ch;
bool flag=0;
int item,d;
while(1)
{
clrscr();
gotoxy(45,23);
cout<<"*** Writting By Karma ***";
gotoxy(1,1);
cout<<"\n\nWhat do you want to do?\n\n";
cout<<"1-insert\n2-remove\n3-Print\n4-Exit\n\n";
cout<<"What is your selection:";
cin>>ch;
switch(ch)
{
case'1':
clrscr();
cout<<"\n\nPlease neter a number to add:";
cin>>item;
insert(&sample,item);
break;
case'2':
d=remove(&sample,&flag);
if(flag==1)
{
clrscr();
cout<<"\n\nYour deleted number is:";
cout<<d;
getch();
}
break;
case'3':
print(&sample);
getch();
break;
case'4':
return 0;
}
}
getch();
return 0;
}
//***********************************************
void insert(struct stack *p,int item)
{
struct stack*temp;
temp=new struct stack;
temp->value=item;
if(p==0)
p=temp;
else
{
temp->top=p->top;
p->top=temp;
}
}
//***********************************************
int remove(stack *p,bool*flag)
{
int item;
struct stack*temp;
temp=p->top;
if(p==0||p->top==0)
{
clrscr();
cout<<"\nVoid deletion";
getch();
*flag=0;
}
else
{
temp=p->top;
item=temp->value;
p->top=temp->top;
*flag=1;
}
delete temp;
return item;
}
//***********************************************
void print(struct stack*p)
{
int i=0;
struct stack*temp;
temp=p;
while(temp!=0)
{
if(i!=0)
cout<<" <- "<<temp->value;
temp=temp->top;
i++;
}
}
//***********************************************[/PHP]