(a)cout << endl;
(b)cout << "Hickory" << endl << "Dickory" << endl << "Dock" << endl;
(c)#include <iostream> using namespace std; int main() { cout << "Please key in two numbers separated by a space: "; int x, y; cin >> x >> y; cout << y << " " << x << endl; }
#include <iostream>
using namespace std;
int main()
{ int x, y;
cout << "Please key in a number: ";
cin >> x;
cout << "And now key in another: ";
cin >> y;
cout << "The sum is " << x + y << endl;
or you could have
int sum = x + y;
cout << "The sum is " << sum << endl;
}
5
7
12
10
2
Arithmetic Exception
(attempt to divide by zero)
BBC | OK |
---|---|
C++ | No. Can't have "+" in an identifier. |
y2k | OK |
Y2K | OK, and different from y2k. |
old | OK |
new | No. new is a keyword. |
3GL | No. Can't begin with a digit. |
a.out | No. Can't have a "." in an identifier. |
remove | OK, though delete is a keyword. |
first-choice | No. Can't have a "-". |
2nd_choice | No. Can't begin with a digit. |
third_choice | OK |
constant | OK. const is a keyword, but constant is OK. |
UNION | OK, though union (lower-case) is a keyword. |
real art
7
false | Numerals come before letters |
---|---|
true | Upper-case come before lower-case |
false | Upper-case 'B' before lower-case 'b' |
true | ASCII table puts '$' before '&' |
false | Space comes before apostrophe |
#include <iostream>
using namespace std;
int main()
{ int husband, wife;
cout << "Please key in the husband's salary: ";
cin >> husband;
cout << "And now key in the wife's: ";
cin >> wife;
if (husband + wife > 40000)
cout << "You are due for the higher rate." << endl;
else cout << "You are not due for the higher rate." << endl;
}
if (exammark >= 40)
{ cout << "A satisfactory result" << endl;
cout << "You may proceed with your project." << endl;
}
else
{ cout << "I'm afraid you have failed." << endl;
cout << "You may re-enter next year." << endl;
}
#include <iostream>
using namespace std;
int main()
{ cout << "Please key in two numbers separated by a space: ";
int x, y;
cin >> x >> y;
if (y == 0)
cout << "Cannot divide by zero." << endl;
else if (x % y == 0)
cout << "Yes" << endl;
else cout << "No" << endl;
}
#include <iostream>
using namespace std;
int main()
{ cout << "Please key in an integer representing a 24-hour time," << endl;
cout << "eg 1415 represents 2.15 pm. Midnight is zero: ";
int time;
cin >> time;
if (time < 0)
cout << "Cannot be negative" << endl;
else if (time >= 2400)
cout << "Cannot be >= 2400" << endl;
else
{ int hours = time / 100, mins = time % 100;
if (mins >= 60)
cout << "Cannot have minutes >= 60." << endl;
else if (hours >= 21)
cout << "Working late?" << endl;
else if (hours >= 17)
cout << "Good evening" << endl;
else if (hours >= 12)
cout << "Good afternoon" << endl;
else if (hours >= 8)
cout << "Good morning" << endl;
else if (hours >= 5)
cout << "Up early?" << endl;
else cout << "Get a life." << endl;
}
}
#include <iostream> using namespace std; int main()
or{ int n = 1; int n = 0; while (n <= 10) while (n < 10) { cout << n * n << endl; { n = n + 1; n = n + 1; cout << n * n << endl; } } }
(x == 5 and y == 10) | false |
(x < 0 or y > 15) | true |
(y % x == 0 and s.length() == 8) | true |
(s.substr(1,3) == "Bir" or x / y > 0) | false (s.substr(1,3) is "irk", and x / y gives integer division) |
#include <iostream>
using namespace std;
int main()
{ bool finished = false;
int count = 0;
while (not finished)
{ int num;
cin >> num;
if (cin.fail())
finished = true;
else
count = count + 1;
}
cout << "Number of numbers was " << count << endl;
}
1 2 3 4, 4 3 2 1, 1 4 2 3
.
#include <iostream>
using namespace std;
int main()
{ bool empty = false, finished = false;
int max, num;
cin >> num;
if (cin.fail())
empty = true;
else max = num;
while (not empty and not finished)
{ cin >> num;
if (cin.fail())
finished = true;
else
if (num > max)
max = num;
}
if (empty)
cout << "No input" << endl;
else if (not cin.eof())
cout << "Invalid input" << endl;
else cout << "Largest was " << max << endl;
}
#include <iostream>
using namespace std;
int main()
{ bool finished = false;
int count = 0;
while (not finished)
{ int num;
cin >> num;
if (cin.fail())
finished = true;
else if (num == 100)
count = count + 1;
}
cout << "Number of times 100 occurred was " << count << endl;
}
#include <iostream>
#include <string>
using namespace std;
int main()
{ bool finished = false;
string s, longest;
int maxlen = 0;
while (not finished)
{ getline(cin,s);
if (cin.fail())
finished = true;
else if (s.length() > maxlen)
{ maxlen = s.length();
longest = s;
}
}
cout << longest << endl;
}
#include <iostream>
#include <string>
using namespace std;
int main()
{ bool finished = false;
int curr, prev;
cin >> prev;
while (not finished)
{ cin >> curr;
if (cin.fail())
finished = true;
else
{ if (curr == prev)
cout << "Same" << endl;
else if (curr > prev)
cout << "Up" << endl;
else cout << "Down" << endl;
prev = curr;
}
}
}
int triplus(int x)
{ return x * 3 + 1; // precedence of operators ensures (x * 3) + 1, which is what we want
}
string lastpart(string s, int n)
{ if (n > s.length())
return s;
else return s.substr(s.length() - n);
}
void display(int x, int y)
{ int small = x, large = y;
if (x > y)
{ large = x;
small = y;
}
cout << "The sum is " << large + small << endl;
cout << "The difference is " << large - small << endl;
cout << "The product is " << large * small << endl;
if (small == 0)
cout << "Cannot divide by zero" << endl;
else cout << "The quotient is " << large / small << " with remainder " << large % small << endl;
}
string middle(string s)
{ string empty_string; // initialised by default to empty string
if (s.length() < 3)
return empty_string; // or just return ""; (with no space between the quote marks)
else return s.substr(1, s.length() - 2);
}
void stretch(string s)
{ if (s.length() == 0)
return;
cout << s.substr(0,1);
int n = 1;
while(n < s.length())
{ cout << " " << s.substr(n,1);
n = n + 1;
}
cout << endl;
}
#include <iostream>
#include <string>
using namespace std;
string firstpart(string s, int n)
{ return s.substr(0, n);
}
int main()
{ string sg;
cout << "Please key in a string: ";
cin >> sg;
int n = 1;
while(n <= sg.length())
{ cout << firstpart(sg, n) << endl;
n = n + 1;
}
}