Nov 21, 2018 at 2:18pm
#include <iostream>
using namespace std;
main(){
int n;
cin >>n;
for(int i=1;n<=100;i++){
for(int k=1;n<=100;k--){
}
}
return 0;
}
So i wrote this I need help what do i have to cout ?
it has to cout all possible pairs
Nov 21, 2018 at 2:20pm
Last edited on Nov 21, 2018 at 2:24pm