- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
- Interests
- C++, Perl, Java
- PC Specs
- AMD Phenom II X6 1090T Black Edition 3.2 GHz (3.6 GHz Turbo Core); 8 GB DDR3; Sapphire Ati HD 5850 1…
11 Posted Topics
Hi mates, How can I keep the result ready to paste in copy? I was trying to find this thing on Google but so far everthing is about to copy the physical address of the data :/ I need to copy the result, as an example imagine a calculator copy … | |
Hi, I have some problems with the code below. Also below the code I have two pictures one from IE one from Chrome. [CODE] <object id="MediaPlayer1" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Windows® Media Player components..." type="application/x-oleobject" width="280" height="256"> <param name="fileName" value="<?php echo $check ?>"> <param name="animationatStart" value="false"> <param name="transparentatStart" value="false"> <param … | |
Hi, I have some problems with the code below. Also below the code I have two pictures one from IE one from Chrome. [CODE] <object id="MediaPlayer1" CLASSID="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Windows® Media Player components..." type="application/x-oleobject" width="280" height="256"> <param name="fileName" value="<?php echo $check ?>"> <param name="animationatStart" value="false"> <param name="transparentatStart" value="false"> <param … | |
[CODE]echo '<h3>Yeni Yönetici Ekleme Ekranı...</h3><br><br>'; if (isset($_POST['submit']) && $_POST['submit'] == "Kaydet"){ if ($_POST['usernname'] != "" && $_POST['password'] != "" && $_POST['first_name'] != "" && $_POST['last_name'] != "" && $_POST['email'] != "" && $_POST['TCK'] != "") { $query = "SELECT username FROM users WHERE username = '".$_POST['username']."';"; $result = mysql_query($query) or … | |
i wanna get two inputs and calculate them. how can i do? my code is [CODE] <input type="text" name="a" /> <input type="text" name="b" /> <input type="submit" name="Submit" value="calculate" /> <?php if ($a > $b) echo "a is greater than b"; else echo "a is greater than b" ?>[/CODE] please help … | |
Writing a program that reads a string of arithmetic expression from the keyboard and evaluates the arithmetic operation in the string. Some example runs are given below. program should accept only * any real or integer numbers * four basic arithmetic operators, +, -, *, / * paranthesis ( , … | |
Re: [QUOTE=;][/QUOTE] I recommend you to use universities tutorials, you can find them in OpenCourseWare web-sites of universities. For the begineers it's quick and fun. After understanding some terms and little code parts (like includes 3 or 4 iterations programs), you could use what I used when I was begining of … | |
Re: [QUOTE=;][/QUOTE] This may work.. [CODE] int sumofDigits { string str; int result = 0; cin>>str; for(int i=0; i<str.length(); i++) { result += temp/pow(10,i); } cout<<"The result of "<<str<<" is = "<<result<<endl; } [/CODE] | |
![]() | Re: [QUOTE=;][/QUOTE] You could use something like this; [CODE] #include <iostream> #include <ctime> #include <cstdlib> using namespace std; int main() { //As I remember srand() gave us a begining value to count. srand(time(0)); //expression after rand() funct. represents numbers are between 20 and 10. int i = rand() % 20 - … |
Hi, I need to add link into echo phrase, and the 'Title' that is defined by the uploader, appear on the page. Can anyone help me about that subject. //Outputs the image and other data Echo "< =[COLOR="Red"]./file/".$info['file'][/COLOR] ."> <br>"; Echo "<b>Title :</b> "[COLOR="Green"].$info['title'][/COLOR] . "<br> "; Echo "<b>Description :</b> … | |
Q. Using recursion, write [B]a[/B] C++ function into [B]b[/B] to convert an arbitrary integer n>=0 into binary. Call this function in the main program with the argument n (That's an easy part I can do that). In example; input n=27, output 11011. If anyone can help me with this question, … |
The End.