#include<iostream>
using namespace std;
void changeA(int param) {
param = 20;
cout << param << "\n";
}
int main(){
int a = 10;
changeA(a);
cout << a << "\n";
return 0;
}
class Solution { public int [] countOppositeParity ( int [] nums ) { // approach 1 - checks every pair int n = n...
No comments:
Post a Comment