fork download
  1. #include <iostream>
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4.  
  5. int main() {
  6. vector<int> nulinashti;
  7. vector<int> ertinshti;
  8. vector<int> orinashti;
  9. for(int i=1; i<31; i++){
  10. if(i % 3 == 0){
  11. nulinashti.push_back(i);
  12. }if(i % 3 ==1){
  13. ertinshti.push_back(i);
  14. }if(i % 3 ==2){
  15. orinashti.push_back(i);
  16. }
  17.  
  18. }
  19. // your code goes here
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty