- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
tutor
- Interests
- music, sports, computers
Re: well friend I think thats you can do it by loops , playing with the cout''s also by using ( \t ) - ( \n ) ......... I think that your solution was the basic step for all others shapes I will list some for you , I hope that … | |
Hello, I just need some help with linkedlists in C#, linked-list in C++ is kinda easy with pointers but im facing some problems in C# I read the examples provided on http://msdn.microsoft.com but I couldn't figure out how to link two different linked lists the efficitent way seems to be … | |
I am trying to Build a JAR File of Interface Classes I am using Linux and working throughout the terminal I keep getting this error Syntax error , type parameters are only available if source level is 1.5 I searched many sites and most solutions were about java on windows … | |
I'm using the HR@orcl learning account from oracle. ----------------------------------------------------- and I have the following question : Create a an SQL query to display the department, the number of employees for that department based on their salary, and the total number of employees for that department, giving each column an appropriate … | |
Hello Friends I'm facing a problem and I can't figure out what is the wrong ( it is [COLOR="Red"]a Run~Time~Error[/COLOR]) I have these two classes [CODE] // singly-linked list class to store integers #ifndef INT_LINKED_LIST #define INT_LINKED_LIST class IntSLLNode { public: int info; class IntSLLNode *next; IntSLLNode(int el, IntSLLNode *ptr … | |
Guys I'm having a problem which is really annoying me .. I'm trying to change a normal class into a template class, but every time I try to do that I get a bunch of problems with the object of that class and the template : let's say I have … | |
hello my friends ... in C# Forms ( application form) my question is about the (DateTimePicker) is there any way to calculate the days between two different times which were entered by the tool DateTimePicker by an existing method or something else ... thank you in advance | |
in this program im tryin to keep the guests in a line and the numbers in another line ... but it always start from the middle of the list I dont know why take a look : [CODE]class Program { static void Main(string[] args) { string x = "Guest_TheDreamBoi Guest_XxEmoChickGirlxX … | |
ok guys what im trying here is to fill array with a big integer number(which is string) by using class-objects first i made two references n1\n2 to the objects entry and arr -constructor to assign entry to null i used a property ( as wanted in the question ) to … | |
hello my friends I need a little help over here : im workin on a calculator that should provide the user with these services: • Read a big integer number up to 300 ( use arrays ) . • Sum two big integer numbers (with using the carry). • Product … | |
well my friends I tried to solve a problem and it was about allowing the user to enter a paragraph , then the compiler'll count and display the number of typed words . welll I easily solved it like this -------------------------------------------------- [code] #include<iostream> #include<string> using namespace std; void main() { … | |
Re: I would solve it in this efficient easy way [code] #include <iostream> #include <string> using namespace std; int countdigits(string word) { int count=0; for(int i=0;i<(int)word.length();i++) { if(isdigit(word[i])) count=count+1; } return count; } void main() { string word; getline(cin,word); int digits=0; digits=countdigits(word); cout<< digits<<endl; } [/code] | |
[B][COLOR="Green"]Hello every one , I am new , I hope and I will try to be a good memeber here . my name is Elie 18 years old I study informatic engineering . I hope that I can help you in threads and you help me back in my threads … | |
<email snipped and color code tags deleted> this is the solution for this problem its kinda long and boring ,but it works properly [code=cplusplus] #include <iostream> #include <iomanip> using namespace std; void main() { const int r=4, c=4; int ar1[r][c]; int ar2[r][c]; int sum[r][c]; int prod[r][c]; int s=0, y, x; … |