09-09-2005, 13:17
|
|
|
|
חבר מתאריך: 15.03.05
הודעות: 204
|
|
עזרה בשפת c++
איך אני יכול לשנות משתנה באמצע הסקריפט לדוגמא:
קוד:
const int LOW = 1;
const int HIGH = 80;
main()
{
int first_die, sec_die, dani;
time_t seconds;
time(&seconds);
srand((unsigned int) seconds);
first_die = rand() % (HIGH - LOW + 1) + LOW;
sec_die = rand() % (HIGH - LOW + 1) + LOW;
dani = rand() % (HIGH - LOW + 1) + LOW;
cout << "dani";
}
אני רוצה לשנות באמצע הסקריפט את המשתנה HIGH זה אפשרי??
הכוונה שלי היא שבהתחלה המשתנה יהיה 80 ואז באמצע התוכנית אני צריך שהוא יהיה 20 והאם אפשר לשנות את הסוג שלו הכוונה מ- int ל long??
אם כן אז להסביר אם לא אז יש דרך אחרת??
בתודה מראש,
_____________________________________
Your signature did not follow Fresh's signatures policy, therefore it was automatically erased. Please see the E-Mail which has been sent to you, to learn how to fix this.
|