- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
20 Posted Topics
is there any website where i can get great varieties of MD2 modules .......thank you :)
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 …
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 …
what Ram Storage does core 2 duo processor supports thank you :)
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 :)
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 :)
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 …
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 …
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 …
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]
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 …
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 …
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 : …
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 …
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. …
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 :) :)
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 …
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 …
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. …
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
The End.
reemhatim