Помогите решить информатику. В С++

0 голосов
23 просмотров

Помогите решить информатику. В С++


image

Информатика (60 баллов) | 23 просмотров
Дано ответов: 2
0 голосов
Правильный ответ

#include
using namespace std;
int main()
{
  double l,a;
  cin>>l; 
  a = l / 100;
  cout<<a;<br>  return 0;
}


#include
using namespace std;
int main()
{
  double M,a;
  cin>>M; 
  a = M / 1000; 
  cout<<a;<br>  return 0;
}


#include
using namespace std;
int main()
{
  int n,a,b;
  cin>>n; 
  a = n / 10;
  b= n  % 10;
  cout<<a<<" "<<b;<br>  return 0;
}

(6.8k баллов)
0 голосов

1)
#include
using namespace std;
int main()
{
int l;
cin >> l;
cout << l / 100;<br>return 0;
}
2)
#include
using namespace std;
int main()
{
int m;
cin >> m;
cout << m / 1000;<br>return 0;
}
3)
#include
using namespace std;
int main()
{
int n;
cin >> n;
cout << n / 10<<' '<<n%10;<br>return 0;
}

(148 баллов)