[]
c++ noob soru.
'cout': undeclared identifier
'endl': undeclared identifier
uyarısı alıyorum. void fonksiyonun içinde kullandım diye mi oldu ki? yoo void içinde bunları yapmicaksak napcaz zaten. ya çok saçma be bi el pls.
'endl': undeclared identifier
uyarısı alıyorum. void fonksiyonun içinde kullandım diye mi oldu ki? yoo void içinde bunları yapmicaksak napcaz zaten. ya çok saçma be bi el pls.
kodu paylaşırsan daha iyi yorum yapılabilir.
- tannen (08.12.14 14:42:39)
void diye olmaz. tek farkı void'de return değeri yoktur.
- nuka cola (08.12.14 14:43:29)
#include <iostream>
#include <cstdlib>
#include <ctime>
/*
Write a program that simulates coin
tossing experiment for 1000 times.
The program will print the total
number of heads and tails.
*/
void flip ()
{
srand(time(0));
int a, heads, tails;
for (int i=1; i<=1000; i++)
{
a=rand()%2;
if (a==0)
heads++;
else
tails++;
}
cout<<heads<<" times for heads."<<endl;
cout<<tails<<" times for tails."<<endl;
}
int main()
{
flip();
return 0;
}
#include <cstdlib>
#include <ctime>
/*
Write a program that simulates coin
tossing experiment for 1000 times.
The program will print the total
number of heads and tails.
*/
void flip ()
{
srand(time(0));
int a, heads, tails;
for (int i=1; i<=1000; i++)
{
a=rand()%2;
if (a==0)
heads++;
else
tails++;
}
cout<<heads<<" times for heads."<<endl;
cout<<tails<<" times for tails."<<endl;
}
int main()
{
flip();
return 0;
}
- rubenanyukov (08.12.14 14:44:18)
using namespace std;
eklemelisin void flip() ten önce.
veya std::cout ile std::endl şeklinde de kullanabilirsin.
eklemelisin void flip() ten önce.
veya std::cout ile std::endl şeklinde de kullanabilirsin.
- tannen (08.12.14 14:46:47)
aa, belliydi noob olduğu eyvallah sağ olun.
- rubenanyukov (08.12.14 14:48:28)
- Yehova (08.12.14 15:33:50)
1