---+++ Day 2 Sample code ---+++ Hello world <sticky> %CODE{"c++"}% #include <iostream> using namespace std; int main() { cout << "Hello, world." << endl; return 0; } %ENDCODE%</sticky> ---+++ 01-08.cpp <sticky> %CODE{"c++"}% #include <iostream> using namespace std; int main( ) { int number_of_pods, peas_per_pod, total_peas; cout << "Press return after entering a number.\n"; cout << "Enter the number of pods:\n"; cin >> number_of_pods; cout << "Enter the number of peas in a pod:\n"; cin >> peas_per_pod; total_peas = number_of_pods * peas_per_pod; //number_of_pods * peas_per_pod = total_peas; cout << "If you have "; cout << number_of_pods; cout << " pea pods\n"; cout << "and "; cout << peas_per_pod; cout << " peas in each pod, then\n"; cout << "you have "; cout << total_peas; cout << " peas in all the pods.\n"; return 0; } %ENDCODE%</sticky> ---+++ 08-10.cpp <sticky> %CODE{"c++"}% #include <iostream> using namespace std; int main( ) { cout << "Testing 1, 2, 3\n"; return 0; } %ENDCODE%</sticky> *
Attachments
Attachments
Topic attachments
I
Attachment
History
Action
Size
Date
Who
Comment
pptx
Day2.pptx
r1
manage
6082.5 K
2015-08-30 - 17:38
JimSkon
Day2
This topic: SCMP118/Fall2016
>
WebHome
>
CodeDay2
Topic revision: r6 - 2016-08-29 - JimSkon
Copyright © 2008-2019 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki?
Send feedback