I'm getting NAN out of nowhere

Binarydepth via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Thu Jul 9 08:14:41 PDT 2015


This is my code :
import std.stdio : writeln, readf;
void main()	{
	int[3] nums;
	float prom;
	foreach(nem; 0..2)	{
		writeln("input a number : ");
		readf(" %d", &nums[nem]);
		prom+=nums[nem];
	}
	writeln(prom/3.0);
}

I get prompted two times for a number and I then get NAN out of 
nowhere.


More information about the Digitalmars-d-learn mailing list