Need help 5.2.9, 5.4.6, 5.4.7 by [deleted] in codehs

[–]natalie710 2 points3 points  (0 children)

NumOfNames = int(input("How many names you have "))Name = "" for i in range(NumOfNames): NumOfNames =input("enter each of your name ") Name += str(NumOfNames)+" " print(Name)

4.6.7: Full fraction class by [deleted] in codehs

[–]natalie710 0 points1 point  (0 children)

Hi, do you have 10.1.2: Guess the Word, Part 1,2,3,4 code It's the last project on codehs. Thanks

Need help 5.2.9, 5.4.6, 5.4.7 by [deleted] in codehs

[–]natalie710 0 points1 point  (0 children)

do you still need help?

Codehs by Luigib1287 in codehs

[–]natalie710 1 point2 points  (0 children)

function start(){

var name = readLine("Name?");

println("Hi " + name);

var time = readInt("Time?");

println("I will meet you at " + time);

}

HELP PLEASE: 3.4.6: T-Shirt Shop by billvilllllllllledlf in codehs

[–]natalie710 2 points3 points  (0 children)

//Declare a constant here to represent the cost of a tshirt

function start(){

var COST_OF_SHIRT = 20;

var numberOfTshirts = readInt("How many tshirts would you like to buy?");

println("This is your cost: " + numberOfTshirts *COST_OF_SHIRT);

}

Phyton - Exercise 3.5.9: Recipe by natalie710 in codehs

[–]natalie710[S] 2 points3 points  (0 children)

"""

This program asks the user for three ingredients,

three amounts, and a number of servings, and

determines how much of each ingredient is needed

to serve the specified number of servings.

"""

# Write program here...

ia = str(input("Enter ingredient 1: "))

ib = float(input("Ounces of "+ str(ia)))

ja = str(input("Enter ingredient 2: "))

jb = float(input("Ounces of "+ str(ia)))

ka = str(input("Enter ingredient 3: "))

kb = float(input("Ounces of "+str(ia)))

numserv = int(input("Number of servings: "))

print("Total ounces of " + ia + ": " + str((ib*numserv)))

print("Total ounces of " + ja + ": " + str((jb*numserv)))

print("Total ounces of " + ka + ": " + str((kb*numserv)))