知識社群登入
位置: AutoCAD開放式教學 > 討論區 > 討論
兩個變數的值,做交換的動作
1樓
#if 0

a= 385, b= 270
請按任意鍵繼續 . . .
a= 270, b= 385
 c= 1195
請按任意鍵繼續 . . .

#endif
// ----------------------------------------------

#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
// ----------------------------------------------

int main()  
{
    int a, b, c, i;
    
    // srand(time(NULL));
    srand(0x410);
    for (i=1;i<=300;i++) {
        a= rand();
}
    a= rand()%1000;
    b= rand()%1000;
    printf("a= %d, b= %d \n", a, b);
system("pause");
    
    int temp;
    
    // a --> temp
    temp= a;
    a=    b;
    b=    temp;

    c=3*a + b;
    printf("a= %d, b= %d \n c= %d \n", a, b, c);
system("pause");
return 0;
}// end of main()