کامپیوتر

بایگانی
آخرین مطالب

۳۶ مطلب در بهمن ۱۳۹۶ ثبت شده است

  • ۰
  • ۰

فایل متنی

فایل cpp

#include "stdafx.h"

#include "iostream"

using namespace std;

//alidoran

int main()

{

int n, d;

cout << "Enter two positive integers: ";

cin >> n >> d;

if (!(n%d)) cout << n << " is divisible by "<< d << endl;

system("pause");

return 0;

}

  • علی دوران
  • ۰
  • ۰

فایل متنی

فایل cpp

#include "stdafx.h"

#include "iostream"

using namespace std;

//alidoran

int main()

{

float cm, in;

cout << "please input your inch number:\t";

cin >> in;

cm = in*2.54;

cout << endl << in << " inch=" << cm << " cm"<<endl;

system("pause");

    return 0;

}

  • علی دوران
  • ۰
  • ۰

فایل متنی

فایل cpp

#include "stdafx.h"

#include <cmath>

#include <iostream>

using namespace std;

//alidoran

int main()

{ double a, b, c;

cout << "Enter the coefficients of a quadratic equation:"

<< endl;

cout << "\ta: ";

cin >> a;

cout << "\tb: ";

cin >> b;

cout << "\tc: ";

cin >> c;

cout << "The equation is: " << a << "*x*x + " << b << "*x + " << c << " = 0" << endl;

double d = b*b - 4 * a*c; 

double sqrtd = sqrt(d);

double x1 = (-b + sqrtd) / (2 * a);

double x2 = (-b - sqrtd) / (2 * a);

cout << "The solutions are:" << endl;

cout << "\tx1 = " << x1 << endl;

cout << "\tx2 = " << x2 << endl;

cout << "check:" << endl;

cout << "\ta+x1*x1 + b*x1 + c = " << a*x1*x1 + b*x1 + c << endl;

cout << "\ta+x2*x2 + b*x2 + c = " << a*x2*x2 + b*x2 + c << endl;

system("pause");

return 0;

}

  • علی دوران
  • ۰
  • ۰

فایل متنی

فایل C++

#include "stdafx.h"

#include "iostream"

using namespace std;

//alidoran

int main()

{

int A = 'A', a = 'a', E = 'E', e = 'e', I = 'I', i = 'i', O = 'O', o = 'o', U = 'U', u='u';

cout << "A=" << A << "\t" << "a=" << a << "\t" << "E=" << E << "\t" << "e=" << e << "\t" << "I=" << I << "\t" << "i=" << i<<"\t" << "O=" << O << "\t" << "o=" << o << "\t" << "U=" << U << "\t" << "u=" << u << endl;

system("pause");

    return 0;

}


  • علی دوران
  • ۰
  • ۰

فایل cpp

فایل متنی


#include "stdafx.h"

#include "iostream"

using namespace std;

//alidoran

int main()

{

short int x = 0;

while (x>=0) {

cout << x << "/";

x = x++;

}

system("pause");

}

  • علی دوران
  • ۰
  • ۰

فایل cpp

فایل متنی


#include "stdafx.h"

#include "iostream"

using namespace std;

//alidoran

int main()

{

int total=100, n=20;

cout << "n=" << n << "\t" << "total=" << total << endl;

total = --n + total;

cout << "n=" << n << "\t" << "total=" << total<<endl;

system("pause");

    return 0;

}


  • علی دوران
  • ۰
  • ۰

فایل cpp

فایل متنی


#include "stdafx.h"

#include "iostream"

using namespace std;

//alidoran

int main()

{

int x=5, y=10, z=20;

cout << "x=" << x << endl << "y=" << y << endl << "z=" << z << endl;

z = x + y++;

cout << "x=" << x << endl << "y=" << y << endl << "z=" << z << endl;

system("pause");

    return 0;

}

  • علی دوران
  • ۰
  • ۰

فایل cpp

فایل متنی


#include "stdafx.h"

#include "iostream"

using namespace std;

//alidoran

int main()

{

int m=1, n;

n = 100 + ++m;

cout << m << endl << n << endl;

m = 1, n=0;

m = m + 1;

n = m + 100;

cout << m << endl << n << endl;

system("pause");

    return 0;

}

  • علی دوران
  • ۰
  • ۰

فایل cpp

فایل متنی

#include "stdafx.h"

#include "iostream"

using namespace std;

//alidoran

int main()

{

int m=1, n;

n = 100 + m++;

cout << m << endl << n << endl;

m = 1, n=0;

n = m + 100;

m = m + 1;

cout << m << endl << n << endl;

system("pause");

    return 0;

}


  • علی دوران
  • ۰
  • ۰

فایل cpp

فایل متنی


#include "stdafx.h"

#include "iostream"

using namespace std;


int main()

{

int m;

cout << "input number>4"<<endl;

cin >> m;

m = m - 1;

cout << m << endl;

m -= 1;

cout << m << endl;

m = --m;

cout << m << endl;

m = m--;

cout << m << endl;

system("pause");

    return 0;

}

  • علی دوران