Day 25

C++ Output Numbers

C++ Print Numbers

You can also use cout() to print numbers.

However, unlike text, we don't put numbers inside double quotes:

Example

#include <iostream>

using namespace std;


int main() {

  cout << 3;

  return 0;

You can also perform mathematical calculations:

Example

cout << 3 + 3


Comments

Popular posts from this blog

Day 2 Talking about computer science 💻

Day 5💻

Day 12 “C comments”