[404218]: / Code / C++ / C++ Tutorial Source Files / 03_C++_Variables.cpp

Download this file

18 lines (12 with data), 229 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#include <iostream>
using namespace std;
int main()
{
char grade = 'A';
string phrase = "Giraffe Academy";
int age = 50;
double gpa = 2.3;
bool isMale = false;
cout << phrase << endl;
return 0;
}