могу ответить только на первый т.к. не очень сильно знаю c++
#include <bits/stdc++.h>
using namespace std;
int main()
{
ifstream fin("c:\input.txt");
string s,sr;
int j;
bool f=true;
while(getline(fin,s))
{
for(int i=0;i<s.length();++i)
{
if((s[i]>='a' && s[i]<='z') ||
(s[i]>='A' && s[i]<='Z'))
{
sr=sr+s[i];
f=true;
}
}
}
cout<<sr;
}
Поделитесь своими знаниями, ответьте на вопрос:
Сдеалть рисунок по координатам в Ms Excel y=-4 x ∁ [-3 ; 3 ] y=1 x ∁ [-0.5 ; 0.5 ] y=-1/2 |x|+1.5 x ∁ [-1 ; 1 ] y=x^2 x ∁ [-2 ; 2 ] y=4x^2+1.5 x ∁ [-0.5 ; 0.5 ] y=-1/4 x^2+6 x ∁ [-3 ; 3 ]
могу ответить только на первый т.к. не очень сильно знаю c++
#include <bits/stdc++.h>
using namespace std;
int main()
{
ifstream fin("c:\input.txt");
string s,sr;
int j;
bool f=true;
while(getline(fin,s))
{
for(int i=0;i<s.length();++i)
{
if((s[i]>='a' && s[i]<='z') ||
(s[i]>='A' && s[i]<='Z'))
{
sr=sr+s[i];
f=true;
}
}
}
cout<<sr;
}