Download this file
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; }