fork(1) download
  1. #include<iostream>
  2. using namespace std;
  3. int main(){
  4. int ipPart1,ipPart2,ipPart3,ipPart4;
  5. cout<<"ingrese el primer Ip"<<endl;
  6. cin>>ipPart1;
  7. cout<<"ingrese el segindo Ip"<<endl;
  8. cin>>ipPart2;
  9. cout<<"ingrese el tercero Ip"<<endl;
  10. cin>>ipPart3;
  11. cout<<"ingrese el cuarto Ip"<<endl;
  12. cin>>ipPart4;
  13. while(ipPart1>255 && ipPart2>255 && ipPart3>255 && ipPart4>255){
  14. cout<<"ERROR!"<<endl;}
  15. cout<<ipPart1<<","<<ipPart2<<"."<<ipPart3<<"."<<ipPart4<<endl;
  16. return 0;
  17. }
Success #stdin #stdout 0s 5272KB
stdin
125
255
123
23

stdout
ingrese el primer Ip
ingrese el segindo Ip
ingrese el tercero Ip
ingrese el cuarto Ip
125,255.123.23