Use proper case (ie Caps for the beginnings of words)

Slides:



Advertisements
Similar presentations
Driving Test 1 Marking Scheme Focus on five areas to pass driving test 1.
Advertisements

COMPUTER PROGRAMMING I Essential Standard 5.02 Understand Breakpoint, Watch Window, and Try And Catch to Find Errors.
Login Screen Step 1: Enter Your Individual Login Id and Password Step 2: Click On Submit Button.
Liang, Introduction to Java Programming, Seventh Edition, (c) 2009 Pearson Education, Inc. All rights reserved Java Programming Practice.
JavaScript- Processing HTML Forms. Event Handlers Begins with and ends with.
CS 106 Introduction to Computer Science I 01 / 29 / 2008 Instructor: Michael Eckmann.
INTRODUCTION TO PYTHON PART 2 INPUT AND OUTPUT CSC482 Introduction to Text Analytics Thomas Tiahrt, MA, PhD.
AlgoTutor Tutorial (3) Program Pad J. Yoo, S. Yoo, C. Pettey, S. Seo, and Z. Dong MTSU Computer Science Department Making the transition from the algorithm.
Functions.
PHP : Hypertext Preprocessor
Hardware.  Learn what hardware is  Learn different input and output devices  Learn what the CPU is.
U SING V ARIABLES IN V ISUAL B ASIC Intermediate 2 Software Development.
Intro to C++. Getting Started with Microsoft Visual Studios Open Microsoft Visual Studios 2010 Click on file Click on New Project Choose Visual C++ on.
INTRODUCTION TO ALGORITHMS PROGRAMMING. Objectives Give a definition of the term algorithm Describe the various parts of the pseudocode algorithm or algorithm.
Mastering Char to ASCII AND DOING MORE RELATED STRING MANIPULATION Why VB.Net ?  The Language resembles Pseudocode - good for teaching and learning fundamentals.
1 Introduction to Java Brief history of Java Sample Java Program Compiling & Executing Reading: => Section 1.1.
Quiz Name Here Click to start Question 1 Type question here Wrong Answer Right Answer.
Test Your Knowledge. x + 3 =6 a.5 b.4 c.3 d.2 y - 11= 78 a. 69 b. 89 c. 87 d. 68.
How to start Visual Studio 2008 or 2010 (command-line program)
Python Programming Using Variables and input. Objectives We’re learning to build functions and to use inputs and outputs. Outcomes Build a function Use.
Scratch Programming Lesson 4 Question asking and answering.
Variables When programming it is often necessary to store a value for use later on in the program. A variable is a label given to a location in memory.
Make a dice challenge! This is a starter activity and should take 5 minutes [ slide 1 ] 1.Log in to your computer 2.Open IDLE 3.Copy the code below in.
Validation final steps Stopping gaps being entered in an input.
Lesson 1. Security At the menu bar at the top you will see the word Tools. Click your mouse on Tools scroll down to Macro. Move the Mouse over and down.
Quiz Name Here Click to start Question 1 Type question here Wrong Answer Right Answer.
Python Lesson 1 1. Starter Create the following Excel spreadsheet and complete the calculations using formulae: 2 Add A1 and B1 A2 minus B2 A3 times B3.
Hangman Code Brittany Moses.
1 Project 5: Leap Years. 222 Leap Years Write a program that reads an integer value from the user representing a year and determines if the year is a.
Inputs, Outputs and Processes © Dolinski Inputs Anything that goes into your system.
For Loop GCSE Computer Science – Python. For Loop The for loop iterates over the items in a sequence, which can be a string or a list (we will discuss.
COMPUTER PROGRAMMING Year 9 – lesson 1. Objective and Outcome Teaching Objective We are going to look at how to construct a computer program. We will.
CPSC 233 Tutorial January 21 st /22 nd, Linux Commands.
Great way to learn is by example so fire up Visual Studios C (at home make sure you custom install with C++ - no longer default) by Deborah R. Fowler.
CSC111 Quick Revision.
Introducing Instructions
Chapter 1 Introduction to Java
BIT116: Scripting Loops.
Data Types and Conversions, Input from the Keyboard
Lesson 1 An Introduction
Lecture Note Set 1 Thursday 12-May-05
Click here for the answer. Click here for the answer.
Click here for the answer. Click here for the answer.
Python Lesson 6 Mr. Kalmes.
Value returning Functions
For -G7 programing language Teacher / Shamsa Hassan Alhassouni.
We are starting to program with JavaScript
Introduction to TouchDevelop
MLA Citation Mini Lesson
Class Examples.
Our Environment We will exercise on Microsoft Visual C++ v.6
What's wrong with Easter jokes? They crack you up
The last lesson of this term!
A LESSON IN LOOPING What is a loop?
Python Basics with Jupyter Notebook
Registration Online Book Codes
JavaScript: Introduction to Scripting
Basic Lessons 5 & 6 Mr. Kalmes.
Selection Statements Chapter 3.
Small Basic Programming
Input and Output Python3 Beginner #3.
Python Inputs Mr. Husch.
Java Lessons Mr. Kalmes.
Basic Mr. Husch.
Python 10 Mr. Husch.
Hint idea 2 Split into shorter tasks like this.
Basic 9 Mr. Husch.
What you need to do… Drag the pieces of code into the correct order like you can see in the EXAMPLE below. print ( “ int input ) = + Hello world chr ord.
MILITARY STATUS REPORT
Presentation transcript:

Use proper case (ie Caps for the beginnings of words) Click here to run your code Type your code here

You need this line before you can get user input. If you want to get user input from the console in your program you must put this line in. Declare the variables you will need to store data. Make sure they are of the correct type! You need this line before you can get user input. Print a message. Store the string entered. Print another message and store the number entered. Test the number and print one of three messages depending on its value.

Lesson objectives Consolidate this new knowledge Programs: Leap year