Promethium
Doçent
- Katılım
- 24 Aralık 2012
- Mesajlar
- 717
- Reaksiyon puanı
- 67
- Puanları
- 28
Arkadaşlar oynarken hızlıca hesap yapmak için yaptım, yapmışken sizinle de paylaşayım dedim.
Kod:
#include <iostream>
#include<cstdlib>
using namespace std;
int main()
{
int k, madde,mevcut;
float metal, kristal, deuterium;
cout << "
[*] OGame hesaplama programına hoş geldiniz." << endl <<endl;
cout << "
[*] Ticaret oranlarını giriniz." << endl;
cout << "
[*] Metal: ";
cin >> metal;
cout << "
[*] Kristal: ";
cin >> kristal;
cout << "
[*] Deuterium: ";
cin >> deuterium;
cout << "\n[1] Metal" << endl;
cout << "[2] Kristal" << endl;
cout << "[3] Deuterium" << endl;
cout << endl <<"
[*] Takaslamak istediğiniz madde: ";
cin >> madde;
cout << "Mevcut kaynak: ";
cin >> mevcut;
switch(madde)
{
case 1:
{
cout << mevcut << " metal " << mevcut*kristal/metal << " kristal" << endl;
cout << mevcut << " metal " << mevcut*deuterium/metal << " deuterium";
break;
}
case 2:
cout << mevcut << " kristal " << mevcut*metal/kristal << " metal" << endl;
cout << mevcut << " kristal " << mevcut*deuterium/kristal << " deuterium";
break;
case 3:
cout << mevcut << " deuterium " << mevcut*metal/deuterium << " metal" << endl;
cout << mevcut << " deuterium " << mevcut*kristal/deuterium << " kristal";
break;
}
cin >> k;
exit(0);
}