Co jest źle w tym kodzie?
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s;
int i,j,k,d;
bool t;
cout<<"Podaj tekst s=";
cin>>s;
k=3;
d=s.length();
cout<<"Dlugosc tekstu d="<<d<<endl;
for(i=1;i<d;i++)
{
j=s[i];
j=j+k;
s[i]=j;
cout<<s[i];
}
cout<<endl;
system("PAUSE")'
return EXIT_SUCCESS;
}
Potrzebuję na teraz:D Z góry dzięki:D
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <iostream>
#include <string>
using namespace std;
int main()
{
string s;
int i,j,k,d;
bool t;
cout<<"Podaj tekst s=";
cin>>s;
k=3;
d=s.length();
cout<<"Dlugosc tekstu d="<<d<<endl;
for(i=1;i<d;i++)
{
j=s[i];
j=j+k;
s[i]=j;
cout<<s[i];
}
cout<<endl;
return 0;
}
Zapomniałeś importować bibliotękę: <cstdlib>
Na samym początku dodaj #include <cstdlib>,
poza tym po system("PAUSE") ma być średnik ;, nie apostrof '
Co do samego algorytmu, to się nie przyglądałem, bo nie powiedziałeś, co powinien robić.