Strona 1 z 1

c++

: 2010-10-12, 09:51
autor: ^|*?**/Adi*/-**
#include <iostream>
#include <conio.h>


using namespace std;

int main()
{
cout << "Podaj dzielna" << endl;


int a,b;

cin >> a;
cout << "Podaj dzielnik" << endl;
cin >> b;
if (b!=0)
{
cout << a<<"/"<<b<<"="<<a/b;
cout << "Press any key to end";
}
else
{
cout << "Podawany dzielnik to 0 nie można wykonać dzielenia";
}

getch();
return 0;


}

: 2010-10-12, 21:11
autor: DrVaNs
Uczymy się C widzę, czekam na rozwój :p