簡單的數據生成方法
阿新 • • 發佈:2017-08-23
and ctime sof 函數 cst style null 簡單的 隨機
添加頭文件<time.h>,<stdlib.h>。
數據生成器寫:freopen("X:\\x.txt","w",stdout);
再寫:srand(time(NULL))用時間作為產生隨機生成數的種子。
後面比如要想產生n個數,可以先int n=多少,再printf("%d\n",n),再for(int i=1;i<=n;i++){int a,a=rand()%1000+1,printf(" %d");}//產生的數a小於1000
程序主函數裏寫:
freopen("X:\\x.txt","r",stdin);
freopen("X:\\y.txt","w",stdout);
舉個栗子:
1 #include<iostream> 2 #include<cstdio> 3 #include<ctime> 4 #include<cstdlib> 5 #include<cstring> 6 using namespace std; 7 int a[105]; 8 9 int main() 10 { 11 freopen("F:\\1.txt", "w", stdout); 12 srand(time(NULL)); 13 int n; 14 for (int cas = 1; cas <= 30; cas++) 15 { 16 n = rand() % 100 + 1; 17 printf("%d\n", n); 18 for (int i = 1; i <= n; i++) { 19 int t = rand() % 10000 + 1; 20 printf("%d ", t); 21 } 22 printf("\n"); 23 } 24 return 0; 25 }
命令行下可用 fc 1.txt 2.txt判斷兩個文件是否相同。
簡單的數據生成方法