Deklarasi:
Balik,tempat,n: integer
Deklarasi:
temp = temp * 10 + n % 10;
if (temp == 0) cout << "0";
n = n/10;
outputnya: balik angka
#include <cstdlib>
#include <iostream>
using namespace std;
int balik(int n) {
int temp = 0;
while (n>0) {
temp = temp * 10 + n % 10;
if (temp == 0) cout << "0";
n = n/10;
}
cout << temp;
return temp;
}
int main(int argc, char *argv[])
{
int bil;
cout << "Masukkan bilangan : ";
cin >> bil;
cout << "Setelah dibalik : " << balik(bil);
system("PAUSE");
return EXIT_SUCCESS;
}
Tidak ada komentar:
Posting Komentar