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

Weakness: bullets

PC Specs
constantly changing
Member Avatar for remusogarius

Hi all, Ive searched all of the web to help me, and Ive asked various people. Ive got a binary search tree program to write in MIPS, but I really have no idea where to start. Ive got the program in C++, but I dont have linux to attempt to …

Member Avatar for gingy
0
3K
Member Avatar for nanosani

I thought it would be great if we share our softwares here. So post your favourite software here that other people would love to have. Note: Please write some description about the software and a link from where it can be downloaded.

Member Avatar for greg.stunt
0
5K
Member Avatar for somers

I am looking for some help with the fibonacci in Mips. Yes, I am a student (part time). Yes, I have made an attempt which is below. Yes, I have tried looking for help, hence me finding this forum. I have the values for the previous value, $t3, and the …

Member Avatar for somers
0
453
Member Avatar for gomickle

I have been working on this assignment for couple weks (aling with my other classwork) and I couldn't get it anywhere, can any one help me doing it. Or can you at least tell me hints and tips toward resolving the program: the question is: The element selection problem is …

Member Avatar for MacGyver Orca
0
1K
Member Avatar for zhapool

im a 1st yr IT student, we have a final project this end of class. . . all we have to do is make a program using java. Honestly, java is very hard for me so if i can have a favor please help me to understand it more. . …

Member Avatar for toxicboy
0
208
Member Avatar for Spardante

Hi. I'm having trouble with a program I am writing in MIPS. This is an assignment, so I'll understand if no one helps. The program has two recursive functions: Power and Multiply. The basic algorithms for each are: [code] int Power(int base, int expon) { if(expon == 0) return 1; …

Member Avatar for MacGyver Orca
0
500
Member Avatar for pavani2006

i want to find the second smallest number ib array but it is displaying second highest number int max=0,second=0; if(a[0]>a[1]) { max=a[0]; second=a[1]; } else { max=a[1]; second=a[0]; } for( i=2;i<n;i++) { if(a[i]>=max) { second=max; max=a[i]; } else if(a[i]>second) second=a[i]; } System.out.println("the second smallest nubmer is"+second);

Member Avatar for ajay_tabbu
0
158
Member Avatar for mepnoob2005

To install MEPIS using the 'Custom install to existing partitions' option that is in the MEPIS installer you first need to create your custom partitions. You can create the custom partitions using gparted. Gparted is used like a live linux cd. It is downloaded as an iso and burnt as …

Member Avatar for crunchie
0
170
Member Avatar for player123

hi there! i cant figure out how i could program a little function in assembly using the PCSPIM environment. the function i want to program with recursion is: func(n) = func(n-1) + (n-1) this is similiar to the fibonnaci function which is: fib(n) = fib(n-1) + fib(n-2) and the code …

Member Avatar for player123
0
82
Member Avatar for heyman121212

Okay I need to find a way to mix up a word (a String) recursively. I have just been trying some stuff: [code] import java.util.Random; public class JumbleRecursive { public static void main(String args[ ]) { String word = "test"; System.out.println(jumbleRecursive(word)); } public static String jumbleRecursive(String word) { String a …

Member Avatar for iamthwee
0
107
Member Avatar for TheAdjustment

I'm having major issues trying to do the following: Write a program that reads in a line of text and then outputs that line of text first in all uppercase letters and then in all lowercase letters. If anyone can help me with that I'd greatly apprciate it.

Member Avatar for masijade
0
123
Member Avatar for husslela2

I need to create a Two-Dimensional Array in "row major"order and add up the elements of the row and return the sum in $v0. I know how to set up the data, i just don't know how to manipulate it to get the sum. And I cannot overflow the registers. …

Member Avatar for husslela2
0
113
Member Avatar for Stoney

Hey everyone. I have a problem. I can't find why my code won't convert Fehrenheit to Celsius. :sad: [CODE]import java.awt.*; import java.awt.event.*; import javax.swing.*; public class CTemp extends JFrame implements ActionListener { private JButton button; public static void main(String[] args) { CTemp frame = new CTemp(); frame.setSize(400, 300); frame.createGUI(); frame.setVisible(true); …

Member Avatar for masijade
-1
181
Member Avatar for Stoney

I can't find this typing error. Somewhere on Line 44. [CODE]import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Weight extends JFrame implements ActionListener { private JButton button; public static void main(String[] args) { Weight frame = new Weight(); frame.setSize(400, 300); frame.createGUI(); frame.setVisible(true); } private void createGUI() { setDefaultCloseOperation(EXIT_ON_CLOSE); Container window …

Member Avatar for rgtaylor
0
227
Member Avatar for Stoney

I get a tip of $8.0 when I want $8.4. What am I missing here? [CODE]import java.awt.*; import java.awt.event.*; import javax.swing.*; public class Tip extends JFrame implements ActionListener { private JButton button; public static void main(String[] args) { Tip frame = new Tip(); frame.setSize(400, 300); frame.createGUI(); frame.setVisible(true); } private void …

Member Avatar for Shashikant
0
103
Member Avatar for Dave77

I have a PC I'd like to install Ubuntu on. I burned an iso onto a CD but I dont know how to install it on my second PC. I'm trying to figure it out. When I start the computer it reads "missing operating system". The hard drive was erased …

Member Avatar for mepnoob2005
0
256
Member Avatar for >shadow<

I highly suggest Dreamlinux for all those who want a really nice mac-type graphical eye candy interface Anyone used it?

Member Avatar for jbennet
0
85
Member Avatar for dowen

{6,12,4,7,9} How do i write a method name serachMax that receives the list above (as an array of integer) as it's argument and return the largest value in the list and How do i create a method name countitem that receives that list above (as a referenced based linked list …

Member Avatar for MacGyver Orca
0
107
Member Avatar for The Dude

Wait until the cube multimonitor thing comes up - VERY cool. Stretches your desktop across the surface of a cube. [url]http://youtube.com/v/Cz_2vKq5cZk[/url]

Member Avatar for John A
0
191
Member Avatar for Monyet

How do you do this? I can assign each random values into arrays, but I cannot increment the value so that I can display each values with another for loops. It needs to be 5 to the right.. [code=java] import java.util.Scanner; import java.util.Random; public class LabAssgn_laksmono { public static void …

Member Avatar for MacGyver Orca
0
132
Member Avatar for MacGyver Orca

Hi, I am working on a personal program, not homework trust me, and the main engine driving it is a random number generator. Unfortunately, I don't know how to build that engine! To make a long story short, I have objects that have a ranking, from 1 to 10, that …

Member Avatar for MacGyver Orca
0
74
Member Avatar for keithh

So here's the question that I've been thinking over for a few hours: MIPS to C. Assume $s3 = i, $s4 = j, $s5 = @A. Below is the MIPS code: Loop: addi $s4,$s4,1 # j = j + 1? add $t1,$s3,$s3 # $t1 = 2 * i add $t1,$t1,$t1 …

Member Avatar for keithh
0
193
Member Avatar for ulethgeek

so i'm learning MIPS right now and i think i get the hang of things, mind you it's all relatively easy (so i've been told), but i can't seem to get around this one problem. i was given a C++ fragment and need to convert (translate) it directly to MIPS. …

Member Avatar for Ancient Dragon
0
179
Member Avatar for inxs_vf

hi!! i need the code for 32 bit multiplication... The numbers are in IEEE 754 and it won't be needed to deal with over and underflow cases, and when the exponent is 0000000 or 11111111. thanxx in advance ;P

Member Avatar for MacGyver Orca
0
373