Pular para o conteúdo principal

Postagens

Mostrando postagens com o rótulo COUT

C++, exibe nome, cout, enter your name, enter your age, his name message, sua idade é, seu nome é, string !!

C++, exibe nome, cout, enter your name, enter your age, his name message, sua idade é, seu nome é, string  #include //program  #include using namespace std; int main() {        string name;    float age;    system("color 3e");// color windows    cout<<"\nYour name\n";    cin>>name;    cout<<"\nYour age\n";    cin>>age;    cout<<"\nHis name is :\n"<    cout<<"\nHis age is:\n"<    system("pause"); }

Long Array,C++, cout, for

#include using namespace std; int main() { // Um array de 10 longs. long longArray[10]; // Inicializa o array. for(int i = 0; i < 10; i++) { longArray[i] = 5 * i; } // Fim de for(int i = 0... // Tenta escrever mais dois // elementos, além do final do // array. // ATENÇÃO: ERRO!!! longArray[10] = 5 * 10; longArray[11] = 5 * 11; // Tenta exibir o array, // inclusive os dois elementos // "extras". for(int i = 0; i < 12; i++) { cout << "\nlongArray["< } // Fim de for. system("pause"); } // Fim de main()

RESTO DIVISÃO INTEIRA, C++, %, COUT

#include using namespace std; int main() { cout << "*** Resto da divisao inteira ***\n"; cout << "40 % 4 = " << 40 % 4 << "\n"; cout << "41 % 4 = " << 41 % 4 << "\n"; cout << "42 % 4 = " << 42 % 4 << "\n"; cout << "43 % 4 = " << 43 % 4 << "\n"; cout << "44 % 4 = " << 44 % 4 << "\n"; system("pause"); }