Advertisement
dllbridge

Untitled

Dec 11th, 2024
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.54 KB | None | 0 0
  1.  
  2.  
  3. #include  <iostream>
  4. using namespace std;
  5.  
  6.  
  7.  
  8. int          numMult3(int nums[], int  size);
  9. void removeAllMult3  (int nums[], int &size);
  10. void       printArray(int nums[], int  size);
  11.  
  12.  
  13. //////////////////////////////////////////////////////////////////////
  14. int main()                                                          //  
  15. {
  16.    
  17.     int nums[100] = {30, 7, -21, 17, 10, 15, 18, 71, 4, 11, -40, 63};
  18.     int size = 12;
  19.  
  20.     printArray(nums, size);
  21.  
  22.     cout << "\nThere are " << numMult3(nums, size)
  23.          << " integers which are multiples of 3. \n" << endl;
  24. /*
  25.     removeAllMult3(nums, size);
  26.  
  27.     printArray(nums, size);
  28.  
  29.     cout << "\nThere are " << numMult3(nums, size)
  30.          << " integers which are multiples of 3. \n" << endl;
  31. */
  32. return 0;
  33. }
  34.  
  35.  
  36. //////////////////////////////////////////////////////////////////////   complete this function
  37. int numMult3(int nums[], int size)                                  //
  38. {
  39.     int c = 0;
  40.    
  41.     for(int i = 0; i < size; i++)
  42.     {
  43.         if(nums[i] % 3 == 0)
  44.         {
  45.              c ++;        
  46.         }
  47.     }
  48. return c;
  49. }
  50.  
  51. //////////////////////////////////////////////////////////////////////   complete this function
  52. void removeAllMult3(int nums[], int & size)                         //  
  53. {
  54.      
  55. }
  56.  
  57.  
  58.  
  59.  
  60. ///////////////////////////////////////////////////////////
  61. void printArray(int *nums, int size)                    //
  62. {
  63.      
  64.     for (int i = 0; i < size; i++)
  65.     {
  66.         cout << nums[i] << ", ";
  67.     }   cout << endl;
  68.  
  69. }
  70.  
  71.  
  72.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement