Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Tags
Member Avatar for br0wnm4n

I am planning to do my masters in IT project management and I was wondering if I can get a PMP certification before I start my masters? I eventually do want to get a PMP certification, but does it really matter if I do it before or after my masters? …

Member Avatar for jwenting
0
190
Member Avatar for br0wnm4n

So I am stuck on my assignment where I am suppose to make mortgage calculator and I am suppose to do the following things: 1. Mortgage Calculator : prompts the user for (a) principal, (b) Annual interest rate , (c) number of months.It calculates the monthly payment and prints the …

Member Avatar for Zvjezdan23
0
373
Member Avatar for br0wnm4n

I am creating a rock, paper, scissors game (RPS) for my C++ class. I got most of the code working but I can't figure out how to implement the Log and the printLog functions an. I've been working on this assignment for the past 6 hrs and this is the …

Member Avatar for WaltP
0
904
Member Avatar for br0wnm4n

Write a program that calculates the closing balance for an indeterminate number of checkbooks. The program must logically flow as follows: * Step 1. Ask for the data for the first checkbook- opening balance, withdrawals and deposits * Step 2. Display the opening balance, the number of withdrawals, the number …

Member Avatar for WaltP
0
1K
Member Avatar for br0wnm4n

Hi all, I am new to C++ and I am having trouble with the syntax. I am suppose to write code for this question: //Write a program in which the funtion main prompts the user for one of the six letters a, b, p, q, x, or y. The function …

Member Avatar for pseudorandom21
0
380
Member Avatar for br0wnm4n

I am trying to figure this problem out but I can't seem to get the code right. Please help. OUESTION: Implement a subclass of list called myList. It will behave just like the list class except for iteration: Usage: >>> l = myList([3,5,7,9]) >>> for item in l: print(item) 3 …

Member Avatar for griswolf
0
83
Member Avatar for br0wnm4n

Hi, I am having some trouble writing this code. The question is as follows: The Sieve of Erastophenes is an algorithm -- known to ancient greeks -- that finds all prime numbers up to a given number n. It does this by first creating a list L from 2 to …

Member Avatar for TrustyTony
0
139
Member Avatar for br0wnm4n

def scary(filename): infile = open(filename, 'r') content = infile.read() infile.close() for i in ';",.()[]{}\/0123456789@#!$': content = content.replace(i, ' ') words = content.split() d = {} for word in words: if word in d: continue else: d[words] = words lst = [] for n in d: lst.append(n) lst.sort() outfile = open('dictionary.txt', …

Member Avatar for TrustyTony
0
116
Member Avatar for br0wnm4n

Hello, I have been working on this code but I can't seem to make it work. I want to implement function index() that takes as input the name of a text file (as a string) and a list of words. For every word in the list, the function will print …

Member Avatar for br0wnm4n
0
246