++C یکی از مهمترین و کاربردی ترین برنامه های جهان میباشید
امیدوارم این مطلب به درد بچه ها بخوره
ادامه مطلب ...#include "iostream.h"
#include "conio.h"
#define e "your num is bad"
void main(){
char x,y;
enum a{sang=0,kaghaz=1,ghaychy=2};
cout<<" sang=0 kaghaz=1 ghaychy=2\n";
cout<<"Enter num:\n";
cin>>x>>y;
if((x==sang)&&(y==kaghaz)){
cout<<"\nwin kaghaz";
}
if((x==sang)&&(y==ghaychy)){
cout<<"\nwin sang";
}
if((x==kaghaz)&&(y==ghaychy)){
cout<<"\nwin ghaychy";
}
else{
cout<<e;
}
getch();
}
#include <iostream.h>
#include <conio.h>
#include <stdio.h>
int lenstr(char str[]);
int findstr(char str[],char sub[]);
void main (void){
char str[100],sub[100];
cout<< "Enter string: ";
gets(str);
cout<< "What to search? ";
gets(sub);
cout << "position: " << findstr(str,sub);
getch();
}
int lenstr(char str[]){
int i=0;
while (str[i])
i++;
return(i);
}
int findstr(char str[],char sub[]){
int i,j,pos=-1;
for(i=0; i<=lenstr(str)-lenstr(sub); i++)
{
j=i;
while(str[j]==sub[j-i] && sub[j-i])
j++;
if (j-i == lenstr(sub))
{
pos = i;
break;
}
}
return(pos);
}
#include"iostream.h"
#include"math.h"
#include"conio.h"
#include"stdlib.h"
const int IMAX = 800;
class coeffs
{
public :
float a, b, c, d, e, x, y, p, q, r, z;
void getdata(void);
void divide(void);
void chkrealcmplx(void);
void dispreal(float, float, float);
void dispcomplx(float, float, float);
};
void coeffs :: getdata(){
cout<<"Enter coefficients 'a' through 'e' :";
cin>>a>>b>>c>>d>>e;
}
void coeffs :: divide(void){
int i;
float y1,z1;
b = b/a; c = c/a; d = d/a; e = e/a;
a = 1;
y = d/c; z = e/c;
x = 1;
for(i=1;i<=IMAX;i++){
y1 = (d-z*(b-y))/((c-z)-y*(b-y));
z1 = e/((c-z)-y*(b-y));
y = y1;
z = z1;
p = 1;
q = b-y;
r = (c-z)-y*(b-y);
}
}
void coeffs :: chkrealcmplx(void){
float delta1,delta2;
delta1 = q*q - 4*p*r;
delta2 = y*y - 4*x*z;
if(delta1<0){
cout<<"Roots R1 and R2 are complex";
cout<<"Roots are :";
dispcomplx(delta1,p,q);
}
if(delta2<0){
cout<<"Roots R3 and R4 are complex";
cout<<"Roots are :";
dispcomplx(delta2,x,y);
}
if(delta1>=0){
cout<<"Roots R1 and R2 are real";
cout<<"Roots are :";
dispreal(delta1,p,q);
}
if(delta2>=0){
cout<<"Roots R3 and R4 are real";
cout<<"Roots are :";
dispreal(delta2,x,y);
}
}
void coeffs :: dispreal(float delta,float A,float B){
float r1,r2;
r1 = (-B+sqrt(delta))/(2*A);
r2 = (-B-sqrt(delta))/(2*A);
cout<<r1<<endl;
cout<<r2<<endl;
}
void coeffs :: dispcomplx(float delta,float A,float B){
float rp,ip;
delta = -delta;
rp = -B/(2*A);
ip = (sqrt(delta))/(2*A);
cout<<rp<<" +j "<<ip<<endl;
cout<<rp<<" -j "<<ip<<endl;
}
void main(){
clrscr();
coeffs coefficients;
cout<<" PROGRAM TO SOLVE A FOURTH ORDER ALGEBRAIC EQUATION ";
coefficients.getdata();
coefficients.divide();
coefficients.chkrealcmplx();
getch();
}
#include"iostream.h"
#include"conio.h"
#include"stdlib.h"
const int totchan=7;
void main(){
int number;
int guess;
int chances=0,score=0,chanscor;
char ans;
do{
clrscr();
chances=score=0;
cout<<"Welcome to the High/Low game.";
cout<<"I will pick a random number from 0 to 100.";
cout<<"You must try to guess the number.";
randomize();
number=(int)(rand()%100);
chanscor=100/totchan;
do{
cout<<"What is your guess? (0 to 100) \n\n";
cin>>guess;
if((guess<0)||(guess>100)){
cout<<"Sorry, but your guess "<<guess<<"must be from 0 to 100.";
}
else if(guess < number){
cout<<guess<<" is low.Try a higher number.\n";
}
else if(guess > number){
cout<<guess<<" is high.Try a lower number.\n";
}
else{
cout<<guess<<" is correct. Congratulations!";
score=chanscor*(totchan-chances);
cout<<"Your score is "<<score<<endl;
break;
}
chances++;
if(guess!=number)
cout<<"Now you have "<<totchan-chances<<"chances left."<<endl;
if(chances==totchan){
cout<<"Only "<<totchan<<"chances are allowed.Better luck nexttime";
cout<<"The actual number was "<<number<<endl;
break;
}
}while (guess!=number);
cout<<"Thank you for playing High/Low!";
cout<<"Want to play it again? (y/n)...";
cin>>ans;
}while(ans=='y' || ans=='Y');
}
سلام در لینک زیر یک برنامه ای که حاوی سورس های اماده به زبان سی پلاس پلاس هست رو برای گوشی هایی که زبان جاوا رو ساپورت میکنن قرار میدم.امیدوارم بدردتون بخوره.
همچنین میتونید در قسمت نظرات سوالات برنامه نویسی خودتون رو مطرح کنید.
#include "iostream.h"
#include "conio.h"
#include "time.h"
void main(){
time_t t;
tm *systime;
for(;;){
t=time(NULL);
systime=localtime(&t);
cout<<systime->tm_hour<<" : "<<systime->tm_min<<" : "<<systime->tm_sec;
clrscr();
}
getch();
}
#include "iostream.h"
#include "conio.h"
#include "iomanip.h"
int remove(int b[],int x,int n){
int temp,s,e,d;
for(e=0;e<=n;e++){
if(x==b[e]){
for(s=e;s<=n;s++){
b[s]=b[s+1];
}
}
}
else{
cout<<" Error\n";
}
for(d=0;d<=n-2;d++){
cout<<b[d]<<"\n\n";
}
}
void main(){
int f,a,b[1000],i,j,sum=0;
cout<<"Enter num array to remove:\n";
cin>>a;
for(i=0;i<=a-1;i++){
cout<<"Enter num:\n";
cin>>b[i];
}
cout<<"Enter num to remove:\n";
cin>>f;
remove(b,f,a);
getch();
}
#include "iostream.h"
#include "conio.h"
void main(){
int n,j,r;
cout<<"ENTER ONE NUMBER\n";
cin>>n;
for(j=1;j<=n;j++){
r=n % j;
if (r==0){
cout<<" "<<j;
if (j!=n){
cout<<" , ";
}
else
cout<<" ";
}
}
getch();
}
سورس برنامه قرار داده شده در این پست کاملاً تست شده است و بدون هیچ گونه خطا کار میکند. برای استفاده از این کد کافی است که آن را از لینک دانلود قرار داده شده در ادامه مطلب آن را دانلود کنید.
امید وارم که ورد استفاده شما دوستان قرار گیرد در ضمن هرگونه مشکلی در انجام یا تریس برنامه براتون پیش اومد آن را در ادامه مطلب برایمون قرار دهید.
سورس برنامه قرار داده شده در این پست کاملاً تست شده است و بدون هیچ گونه خطا کار میکند. برای استفاده از این کد کافی است که آن را از لینک دانلود قرار داده شده در ادامه مطلب آن را دانلود کنید.
امید وارم که ورد استفاده شما دوستان قرار گیرد در ضمن هرگونه مشکلی در انجام یا تریس برنامه براتون پیش اومد آن را در ادامه مطلب برایمون قرار دهید.
سورس برنامه قرار داده شده در این پست کاملاً تست شده است و بدون هیچ گونه خطا کار میکند. برای استفاده از این کد کافی است که آن را از لینک دانلود قرار داده شده در ادامه مطلب آن را دانلود کنید.
امید وارم که ورد استفاده شما دوستان قرار گیرد در ضمن هرگونه مشکلی در انجام یا تریس برنامه براتون پیش اومد آن را در ادامه مطلب برایمون قرار دهید.
سورس برنامه قرار داده شده در این پست کاملاً تست شده است و بدون هیچ گونه خطا کار میکند. برای استفاده از این کد کافی است که آن را از لینک دانلود قرار داده شده در ادامه مطلب آن را دانلود کنید.
امید وارم که ورد استفاده شما دوستان قرار گیرد در ضمن هرگونه مشکلی در انجام یا تریس برنامه براتون پیش اومد آن را در ادامه مطلب برایمون قرار دهید.