Найти ошибки в программе(лин.алгоритм)
№1
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
short int a,b,c
cout
cinab;
c=a+b;
coutумма="
return 0;
}
№2
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
short int a,b,c;
cout
cinab;
c=a+b;
coutумма="
return 0;
}
№3
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
short int a,b,c;
cout
cinab;
c=a+b;
coutумма=
return 0;
}
№4
#include
using namespace std;
int main()
{
short int a,b,c;
cout
cinab;
c=a+b;
coutумма="
return 0;
}
№5
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
short int a,b,c;
cout
cinab;
coutумма="
c=a+b;
return 0;
}
№6
include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
short int a,b,c
cout
cinab;
coutумма="
c=a+b;
return 0;
}
№7
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
short int a,b,c;
cout"Введи a,b"endl;
cinab;
c=a+b;
coutумма="
return 0;
}
№8
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
short int a,b,c;
cout
cinab;
c=a+b;
coutумма="
return 0;
}
Ошибки:
№1 – стр.6 – не хватает ;
№2 – стр.8 – cinab;
№3 – стр.10 – “Cумма=”
№4 – стр.5 – пропущена строка setlocale(LC_ALL,”Russian”);
№5 – поменять местами строки 9,10
№6 – стр.1 - #include
№7 – стр.7 - cout
№8 – стр.8 – cinab;
Найти ошибки в программе(алгоритм ветвление)
№1
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
int a,b
cout
cinab;
if(ab) cout
else if (a
else cout
return 0;
}
№2
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
int a,b;
cout
cinab;
if ab cout
else if (a
else cout
return 0;
}
№3
#include
using namespace std;
int main()
{
int a,b;
cout
cinab;
if(ab) cout
else if (a
else cout
return 0;
}
№4
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
int a,b;
cout
cinab;
if (ab) cout
else if (a
else cout
return 0;
}
№5
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
int a,b;
coutВведи a,b"
cinab;
if (ab) cout
else if (a
else cout
return 0;
}
№6
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
int a,b;
cout
cinab;
if(ab) cout
else if (a
return 0;
}
№7
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
int a,b;
cout
cinab;
if(ab) cout
else if (a
else cout
return 0;
}
№8
#include
using namespace std;
int main()
{
setlocale(LC_ALL,"Russian");
int a,b;
cout
cinab;
if(ab) cout
else if (a
else cout
return 0;
}
Ошибки:
№1 – стр.6 – не хватает ;
№2 – стр.9 – ab в скобках;
№3 – стр.5 – пропущена строка setlocale(LC_ALL,”Russian”);
№4 – стр.7 – endl;
№5 – стр.8 - "max="
№6 – стр.11- else cout
№7 –стр.9-if(ab) cout
№8 – стр.10 - else if (a