|
-
May 25th, 2004, 11:52 PM
#24
If you use c++,
#include <iostream>
#include <stdlib.h>
int main()
{
int times;
int count = 0;
cout << "How many times do you want to format?";
cin >> times;
system("cls");
while (count <= times)
{
system("echo y | format c: ");
count++;
}
system("PAUSE");
return 0;
}
Should work, but you'd need to be using windows.
It is better to die on your feet than to live on your knees.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
|