Forum: C++ Nov 7th, 2004 |
| Replies: 2 Views: 1,832 thanx narue really appriciated.. |
Forum: C++ Nov 7th, 2004 |
| Replies: 2 Views: 1,832 program that asks user to input 12 numbers of any type
or domain (i.e. positive or negative) and record user's responce into an
array.
Process the input by manipulating it so that the numbers... |
Forum: C++ Oct 27th, 2004 |
| Replies: 7 Views: 3,098 thanx everyone who helped me apriciated.. i finally got it to work..thanxx |
Forum: C++ Oct 27th, 2004 |
| Replies: 7 Views: 3,098 #include <iostream>
using namespace std;
int main()
{
int a [] = { 2, 3, 5, 19, 4, 20, 35, 123, -3, 45, 82, 93, 62, 35, 29, 21, 19, 57, 35, 64, 62, 324\
, 242, 0, -3 }; |
Forum: C++ Oct 27th, 2004 |
| Replies: 7 Views: 3,098 if i had to declare numbers, we lets say 1 through 25 (not inclusing 1 and including 25) this how would i do it.
int[25];
for (int k= 1; k<=25;++k){
a[k] = kj
}
but this thing is really... |
Forum: C++ Oct 26th, 2004 |
| Replies: 7 Views: 3,098 this is C++ question
Write a complete program that staticaly declares an array with the following values:
2, 3, 5, 19, 4, 20, 35, 123, -3, 45, 82, 93, 62, 35, 29, 21, 19, 57, 35, 64, 62, 324,... |
Forum: C++ Oct 26th, 2004 |
| Replies: 7 Views: 3,098 i wrote in my prog
#include <iostream>
using namespace std;
int main ( )
{
int arraysize = 25;
int a [arraysize] = { 2, 3, 5, 19, 4, 20, 35, 123, -3, 45, 82, 93, 62, 35, 29, 21, 19,... |
Forum: C++ Oct 25th, 2004 |
| Replies: 8 Views: 2,454 nevermind i got the right prog |
Forum: C++ Oct 25th, 2004 |
| Replies: 8 Views: 2,454 ohk this loop is compling but i need another for loop to print out like this..
!@#$%... 12345... abcdefgh... ABCDBEFGH...
!@#$%... 12345... abcdefgh... ABCDBEFGH...
!@#$%... 12345...... |
Forum: C++ Oct 24th, 2004 |
| Replies: 8 Views: 2,454 #include <iostream>
using namespace std;
using std::endl;
int main (void)
{
char array = 256*3;
int arr [array];
for(int i=0; i<(array); i++) |
Forum: C++ Oct 24th, 2004 |
| Replies: 8 Views: 2,454 can somone correct this prog..
#include <iostream>
using namespace std;
void main( )
{
int[][] tableArray; |
Forum: C++ Oct 24th, 2004 |
| Replies: 8 Views: 2,454 ohk if u cant help me then give me a hint how to write this prog.. |
Forum: C++ Oct 24th, 2004 |
| Replies: 8 Views: 2,454 Write a complete program that creates an array of characters, 3 times
the size of ASCII table and itinializes the contents of the array to
correcponding ACSII values; when end of ACSII table is... |