blob: bf098cb8d69b2268bc743871d14b582554ed2f52 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
using namespace std;
using std::cout;
using std::cin;
using std::endl;
int main()
{
int length;
int width;
int correct = 0;
while (correct == 0) {
cout << "How long is your kite in centimeters? ";
cin >> length;
cout << endl << "How wide is your kite in centimeters? ";
cin >> width;
cout << endl << "Your kite is " << length << "cm long and " << width << "cm wide? 1=Yes/ 0=No ";
cin >> correct;
endl;
}
}
|