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

Aspiring to be a software engineer

Interests
Computer, Books, Video Games, Manga, Anime and Godzilla
Favorite Tags

17 Posted Topics

Member Avatar for C-Money

I am attempting to do some Boolean algebra for my computer organization class. I have gotten the first seven problems done, but for the last four, I am confused. The question for all of them is the same- 'Simplify each expression to Minimal Sum of Products form. Show each step …

Member Avatar for iamthwee
0
162
Member Avatar for C-Money

I am writing a code for my Computer class, that takes a user input string, and displays it with the vowels removed. I have the code to where it takes the input and displays the string, but it only displays the letters in front of the first vowel. For example, …

Member Avatar for sDJh
0
804
Member Avatar for ganges
Member Avatar for ganges
0
4K
Member Avatar for C-Money

I have been working on a code that takes three strings, copies one string into another, takes the length of one of the strings, then concatenates the three strings, copies them, and get there length, but there is a problem. I need it to display 'The three strings combined are: …

Member Avatar for C-Money
0
474
Member Avatar for C-Money

I working on a mips code as extra credit for my Computer Organization and assembly class. The instructions are: Write a program) that will define the following string manipulation functions. Each is analogous to the corresponding C++ string function. STRLEN( Str &, Len &) Sent the address of a string, …

Member Avatar for C-Money
0
13K
Member Avatar for essuku

you might try this(though no guarantees), after creating your main method: public char getCharacterNumber(string st) { char[] c = st.toCharArray(); String str = "....."(whatever you want it to be); int[] arrayCount = new int[equal to length of str]; for (char a : c) { for (int i = 0; i …

Member Avatar for C-Money
0
211
Member Avatar for C-Money

I am attempting to write a code with several different segment, such as combine two differents strings, compare two strings, find the length of a string. Right now, I am working on the part to get the string length, but when I run the code I have so far on …

Member Avatar for C-Money
0
13K
Member Avatar for Xabush

If you're still having trouble, I recommend getting the book Java Programming by Y. Daniel Lang. I used this book for my Programming Fundamentals class, and it was extremely helpful

Member Avatar for C-Money
0
233
Member Avatar for garyndeborah.kuhre

If you want 5 methods in one class, then one way to do it is, let's say for example, you create an array named A, and it's numbers, or characters, are in random order. Then, in the main class, you create a reference method, such as insertionSort(A), selectionsort(A), etc. Then, …

Member Avatar for C-Money
0
286
Member Avatar for firepower

you can try using the book Java Programming. I used the 9th edition in my Programming Fundamentals college class. This is a good book, with definitions for all key Java terms, and gives step by step instructions for designing some Java codes. It also contains plenty of practice codes to …

Member Avatar for C-Money
0
218
Member Avatar for ZaneDarklace

I'm not entirely sure if this would work, but you cuold try using the bucket/radix sort method. The reason I say not sure, is because when I did for a class project, we used number, not strings of characters. But if it does work, it's worth a try. All you …

Member Avatar for C-Money
0
237
Member Avatar for AhmadHasanSahi

If your using java, you have to use the .draw method, which is used in creating guis, and link your main method to the .draw method.

Member Avatar for C-Money
-3
150
Member Avatar for polpulpol

You could try downloading Java Eclipse. When you go to create a new project, choose to create it as an applet. All you need then is to import the Java Scanner class, ask the user for an input of numbers, save them to an array, then link the array to …

Member Avatar for C-Money
0
91
Member Avatar for C-Money

For the assignment I am doing for my Computer Orgainzation and Assembly class, we are to print a given array, using the selection sort. Then, for bonus points, we are to print the array after it is sorted 5 per line. I am stuck on this part. My codes sorts …

Member Avatar for Schol-R-LEA
0
5K
Member Avatar for C-Money

I am trying to write a code that asks the user to input a string, then displays the string with vowels removed. Ex: Godzilla returns in 2014, the output will be 'Gdzll rtrns n 2014' However, I am having massive difficutly in writing this for assembly. However, I was able …

Member Avatar for C-Money
0
1K
Member Avatar for C-Money

I am trying to write a code that asks the user to input a string, then displays the string with vowels removed. Ex: Godzilla returns in 2014, the output will be 'Gdzll rtrns n 2014' However, I am having massive difficutly in writing this for assembly. However, I was able …

Member Avatar for C-Money
0
627
Member Avatar for C-Money

I am attempting to write a Mips code that will take a user input string, and display it without the vowels. I have gotten to a point where it removes the first vowel, but when it displays the string, it only displays the letters before the first vowel. Such as …

0
218

The End.