C++ Нужно создать одномерный массив A[5] где числа будут введены случайным образом от 0 до 1.

Я делал вот что у меня получается:
#include
#include
#include
using namespace std;
int main ()
{
float A[5]={};
srand(time(NULL));
for (char i=0;i<5;i++)
{
A[i]=(char)rand()%1;
cout< }
return 0;
}


Проблема в том, что выводит только нули
Помогите пожалуйста
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Copyright © 2024 SCHOLAR.TIPS - All rights reserved.