C++ takie zadanie potrzebuje chodzi o tablice Ćwiczenia 1. Napisz program, który wykona poniższe zadania: 2 + 7 * 16 - 8 22 * 2 : 11 8383 - 222 + 292 * 8 5 * 2 * 4 Wyniki zapisz do tabeli, a następnie wyświetl je na ekranie.
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
using namespace std;
int main()
{
int tablica[4];
tablica[0] = 2 + 7 * 16 - 8;
tablica[1] = 22 * 2 / 11;
tablica[2] = 8383 - 222 + 292 * 8;
tablica[3] = 5 * 2 * 4;
for(int x = 0; x < 4; x++)
{
cout << tablica[x] << "\n";
}
return 0;
}