Forum: C++ Nov 12th, 2008 |
| Replies: 1 Views: 468 Here are my functions
1- To count even numbers
#include "stdafx.h"
int evens (int x)
{
if (x%2==0)
{ |
Forum: C++ Nov 12th, 2008 |
| Replies: 1 Views: 468 Hello DaniWeb members,
I need some help with a program I made that I couldn't figure out the logic to complete
the program should make 5 random numbers between "1 and 55" and those five numbers... |