Рабочий стол > DL Руководство пользователя > Функции и процедуры > Information > Сравнить страницу
Функции и процедуры Войти | Зарегистрироваться   Просмотр версии для печати текущей страницы.

Ключ
Эти линии были удалены. Это слово было удалено.
Эти линии были добавлены. Это слово было добавлено.

Просмотр истории страницы


Есть 3 изменений. Просмотреть первое изменение .

 *1. Решение задачи с функцией - Слова массива, состоящие из различных букв*
  
 _\#include <bits/stdc++.h>_
 _using namespace std;_
  
 _string Razl(string s)_
 \{
  
 string w;
  
 int d,j;
  
 d=s.length();
  
 w=s\[0\];
  
 for (j=1; jd) &nbsp;w+=s\[j\];
  
 return w;&nbsp;
  
 \}
 \\
  
 _int main()_
 _{_
 _string s\[100\];_
 _int n,i;_
 _cin >> n;_
 _for (i=0; i<n; i++) cin >> s{_}_\[i\]__;_
 _for (i=0; i<n; i++)_
 _if (Razl(s{_}_\[i\]__)==s{_}_\[i\]__) cout << s\[i\] << endl;_
 _}_
  
 *2. Решение задачи с процедурой*
 Предложение => массив слов
  
 _\#include <bits/stdc++.h>_
 _using namespace std;_
  
 _string s,m{_}_\[100\]__;_
 _int n;_
  
 _void Razbit()_
 \{ string p; &nbsp; &nbsp;int i,d; &nbsp; &nbsp;s+=' &nbsp;'; &nbsp; &nbsp;d=s.length(); &nbsp; &nbsp;n=0; &nbsp; &nbsp;p=""; &nbsp;&nbsp;for (i=0; i<d; i+)if (s\[i\]\!=' ') p=s\[i\];else \{m\[n\]=p;n++;p="";\}\}
  
 int main()&nbsp;
  
 &nbsp;{ getline(cin,s);
 Razbit();
 for (int i=0; i<n; i++) cout << m\[i\]&nbsp;&nbsp;<< endl;
 }
  
 *3. Булевая функция, получает в качестве параметра целое x*
  
 *Количество простых, кубы которых меньше n*
  
 \#include <bits/stdc++.h>
 using namespace std;bool Prime(int x)
  
 bool Prime(int x) \{ for (int i=2; i<x; i++) if ((x%i)==0) return false; return true; \}
  bool Prime(int x) \{ for (int i=2; i<x; i++) &nbsp; &nbsp; if ((x%i)==0) &nbsp; &nbsp; return false; &nbsp; return true; \}
 int main()
 {
 string is,s;
 int n,x,ans;
 cin >> n;
 ans=0;
 for (x=2; x*x*x<n; x++)
 if (Prime) ans++;
 cout << ans;
 }
/*
  /\*
 1001 - 4
 126 - 3
 125 - 2
 10 - 1
 7 - 0
 */ 
  \*/&nbsp;
  
 *4. Возвращение значений параметров из процедуры Split* &x1 - передаём в процедуру адрес переменной x1
  
 #include <bits/stdc++.h>
 using namespace std;
  
 void Split(int x, int &x1, int &x2, int &x3)
 \{
  x1=x%10;
  x3=x/100;
  x2=(x/10) % 10;
  \}
  
 int main()
 \{
  int i,i1,i2,i3,
  j,j1,j2,j3,
  n,a2,a3;
  cin >> n;
  a2=0;
  for (i=10; i<100; i++)
  for (j=10; j<100; j++)
  \{
  i1=i/10; i2=i%10;
  j1=j/10; j2=j%10;
  if ((i1+i2==j1+j2) && (abs(i-j)>a2))
  a2=abs(i-j);
  
  \};
  if (n==2) cout << a2;
  a3=0;
  for (i=100; i<1000; i++)
  for (j=100; j<1000; j++)
  \{
  Split(i,i1,i2,i3);
  Split(j,j1,j2,j3);
  if (((i1+i2+i3)==(j1+j2+j3)) && (abs(i-j)>a3))
  a3=abs(i-j);
  \};
  if (n==3) cout << a3;
 \}
Powered by Atlassian Confluence, the Enterprise Wiki. (Version: http://www.atlassian.com/software/confluence Build:#2.6.1 916) - Ошибка/новая особенность - Свяжитесь с Администраторами