Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "pch.h"
- #include <iostream>
- #include <string>
- #include <cstdlib>
- #include <cmath>
- using namespace std;
- void ciag(int *w, int elementy) {
- int ciag=0,ile=0;
- for (int i = 0; i < elementy - 1; i++) {
- if (w[i] - w[i + 1] < 0) {
- ciag -= 1;
- }else if (w[i] - w[i + 1] > 0) {
- ciag += 1;
- }
- if (i == 0 && w[i] % 2 == 0 && w[i] > 10 && w[i] % 3 == 0) {
- ile++;
- }
- if (i>0 && w[i + 1] % 2 == 0 && w[i + 1] > 10 && w[i + 1] % 3 == 0) {
- ile++;
- }
- }
- if (abs(ciag) == elementy-1 && ciag<0) {
- printf("Ciag jest: rosnacy\n");
- }
- else if (abs(ciag) == elementy-1 && ciag > 0) {
- printf("Ciag jest: malejacy\n");
- }
- else {
- printf("Ciag nie jest ani rosnący ani malejacy\n");
- }
- cout << "Suma pierwszego i ostatniego elementu: " << w[0] + w[elementy - 1] << "\n";
- cout<<"Liczba elementow parzystych, dwucyfrowych i podzielnych przez 3: "<<ile<<endl;
- }
- int main() {
- int ile=10;
- int tablica[] = {2,5,7,19,27,40,42,53,60,64};
- int *wskaznik = tablica;
- ciag(wskaznik,ile);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement