C++/Language/Comments — различия между версиями

Материал из C\C++ эксперт
Перейти к: навигация, поиск
м (1 версия: Импорт контента...)
 
м (1 версия: Импорт контента...)
 
(нет различий)

Текущая версия на 10:28, 25 мая 2010

This is a single line comment

#include <iostream>
using namespace std;
int main()
{
  int i;
  cout << "This is output.\n";  // this is a single line comment
  cout << "Enter a number: ";
  cin >> i;
  cout << i << " squared is " << i*i << "\n";
  return 0;
}