C言語 RAND ランダムな数字を表示する

入力した個数分のランダムな9以下の数字を表示する

#include <stdio.h>
int main(void){
int i,x;
scanf("%d",&x);

for(i = 1;i <= x;i++){
   printf("%d ",rand()%9);
}
printf("n");
return 0;
}

Leave a Comment


NOTE - You can use these HTML tags and attributes:
<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(Spamcheck Enabled)

日本語が含まれない投稿は無視されますのでご注意ください。(スパム対策)