C++/Language/Comments

Материал из C\C++ эксперт
Версия от 13:28, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

This is a single line comment

<source lang="cpp">

  1. 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;

}

      </source>