roger:apcs-bpc
This is an old revision of the document!
Basic Programming Concepts
- for Roger
We need to understand basic programming concepts like input and output.
Problem 1: Write a program that asks for your name, and then prints “Hello, Mr. <name>!”.
bpc-1a
print("Hello, my name is Mr. Appledog!")
Now I explain what this does and add;
bpc-1b
name = "Appledog" print("Hello, my name is Mr. " + name + "!")
roger/apcs-bpc.1694516116.txt.gz · Last modified: 2023/09/12 10:55 by appledog