Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
0 Endorsements
Ranked #3K
~3K People Reached
Favorite Tags

20 Posted Topics

Member Avatar for reemhatim

is there any website where i can get great varieties of MD2 modules .......thank you :)

0
51
Member Avatar for reemhatim

I'm doing a small program where i input an array and then get the maximum and minimum number in it . I've succeeded in getting the minimum number but there is a problem in having the maximum number any help what's the problem my code : [CODE] INCLUDE Irvine32.inc Arr_size …

Member Avatar for untio
0
121
Member Avatar for reemhatim

I'm writing a program as a beginner in assembly my program is about summing up all integers in array and then getting their average . I'm stuck with the average is that i need to divide the sum of numbers by my array size and i don't know according to …

Member Avatar for reemhatim
0
143
Member Avatar for reemhatim
Member Avatar for reemhatim

this the first time i create an applet program i want to know how to open a new project to create an applet program thank you :)

Member Avatar for JamesCherrill
0
54
Member Avatar for reemhatim

What is the difference between declaring a variable [CODE]private static final int x;[/CODE] and [CODE]private final static int x;[/CODE] I mean what is the difference between declaring static first then final and vice versa . Thank You :)

Member Avatar for reemhatim
0
83
Member Avatar for reemhatim

I'm doing a small GUI program it is that I have two buttons when I press on any of the buttons it displays a dialog box saying which button I pressed .One of the buttons is a text with image displayed on it . my problem is that an exception …

Member Avatar for reemhatim
0
159
Member Avatar for reemhatim

I'm doing a a program that converts time from 24 hours to 12 hours . I'm doing it using the constructor in class time 12 taking one argument which is of type class time 24 and making the conversion . I've got an error and I don't know where is …

Member Avatar for reemhatim
0
251
Member Avatar for reemhatim

I'm writing a program that inputs the amount of money and outputs it preceded by dollar sign and divided by commas into groups of three digits I'll enter the money as string and call function called mstold()and returns an equivalent number as long double so my problem is how can …

Member Avatar for Ancient Dragon
0
395
Member Avatar for Alice1990

you made the condition as : [CODE] while(choice!=1&&choice!=2&&choice!=3&&choice!=4) [/CODE] 1 and 2 and 3 and 4 are intergers and the choice is character so you should make it as [CODE] while(choice!='1'&&choice!='2'&&choice!='3'&&choice!='4') [/CODE]

Member Avatar for jonsca
0
322
Member Avatar for reemhatim

I'm doing a function that returns the index of the largest integer in the array it's an easy function.I've done it but I don't know why the output is always 10 although i want to return only the index of the largest number and here is my code: int MAX_INT(int …

Member Avatar for reemhatim
0
150
Member Avatar for caltech

question 2 //////////// void printing() { cout<<setw(3)<<"numbers between 10 and 50 "<<setw(17)<<"their divisors"<<setw(18)<<"Prime Numbers"<<"\n\n"; int i; for( i=11;i<50;i++) { cout<<i<<"\n";//prints all numbers between 1 and 50 for(int j=1;j<i;j++)/*since all are divisible by 1 (between 1 and number)*/ { if(i%j==0) cout<<" "<<j<<"\n";//prints divisors of every number } } } cout<<"\n\n\n"; /*try …

Member Avatar for reemhatim
0
141
Member Avatar for scarlettmoon

first : cout << "The lowest score is: " << lowest << endl; lowest is not inialized so it will be automatically inialized 0 so whatever values you write will be zero so you should call function cout << "The lowest score is: " << findLowest(lowest) << endl; second : …

Member Avatar for scarlettmoon
0
162
Member Avatar for reemhatim

long seats; long no_of_guests; long fact=1; cout<<"Enter the number of seats nn"; cin>>seats; cout<<"nnEnter the number of guestsnn"; cin>>no_of_guests; for(int i=0;i<seats;i++) { fact*=no_of_guests; no_of_guests--; } cout<<"the possible combinations : "<<fact<<"nn"; this code has run successfully but there is a something that I couldn't get first this program will run this …

Member Avatar for Momerath
0
92
Member Avatar for reemhatim

I'm doing a second year student in computer and information sciences and it is the first time for me to do a project so I need help . My problem is how to enter a branch information and update the branch information,update holder information .Ijust need a hint to start. …

Member Avatar for reemhatim
0
200
Member Avatar for reemhatim

how could I start my way in programming ?I have taken structured programming in c++ in university and I took a course about object oriented programming in c# but I still feel I'm not on right track .please give me an advice that could help me. thanks :) :)

Member Avatar for ashishkumar008
0
92
Member Avatar for amitchawla

it is wrong to say while(1)because this will prevent the list of cases other than case 1 to be solved make it as sentinal value for example while(option!=-1) and then start your switch case . In my opinion , I'll make the option an integer not character so it will …

Member Avatar for rohand
0
128
Member Avatar for reemhatim

I've taken a course in c# and started practicing by getting questions from books or sites to be good at programming but I think I'm not getting to the right track and I want to be professional in c# language so what is your advice to me ?? thank you …

Member Avatar for reemhatim
0
108
Member Avatar for reemhatim

Write a program that reads a string from the user and generates a histogram for the characters encountered in this string. A histogram is a representation of how many times each character appears in the input string. Use function Histogram that takes the string as input and displays its histogram. …

Member Avatar for reemhatim
0
90
Member Avatar for reemhatim

please could anyone do this program i am a beginner in c# and i need help can u do a program in which the user can enter two words and get the unrepeated letters between two words example computer program output will be cute please c# syntax. thnx

Member Avatar for reemhatim
0
148

The End.