//*************************************************
//第4题
//随机产生100个数,将奇数变号
//*************************************************
#include <stdio.h>
#include <stdlib.h>
int main()
{
int array[100];
int temp;
int count=0;
for(int i=0;i<100;++i)
{
temp=rand()%100;
if(temp%2==0)
{
array[i]=temp;
}
else
{
array[i]=-temp;
}
printf("%5d",array[i]);
count++;
if(count%5==0)
{
printf("\n");
}
}
return 0;
}
【C语言助教】随机产生100个数,将奇数变号
最新推荐文章于 2022-06-28 21:56:39 发布