Berlangganan

About Me


contoh 12

# include <iostream.h>

void main ()
{
    int m=5, n;
    n=++m * --m;
    cout << "m=" << m<< " n= " << n << endl;
    cout << ++m << " " << ++m << " " << ++m << endl;
}

output

m = 5 n = 25
8 7 6

0 Response to "contoh 12"

Post a Comment