Нет, без дополнительных программ нельзя.
Язык С++
#include <iostream>
int main() {
double a, b, c, d;
std::cin >> a >> b >> c >> d;
if (a > b && a > c && a > d) {
std::cout << 1;
}
else if (b > a && b > c && c > d) {
std::cout << 2;
}
else if (c > a && c > b && c > d) {
std::cout << 3;
}
else {
std::cout << 4;
}
return 0;
}
1) Антивирус Kaspersky
2) WinRar
3) KMPlayer
4) Opera
5) Paint
6) Outlast
7) Linux
8) Microsoft Office PowerPoint
9) Pascal ABC
10) Excel
11) Microsoft Word
12) Wikipеdia
№1
#include <iostream>
using namespace std;
int main(){
int a=1, s=0;
while (a!=8) {
++a;
s+=a;
}
cout<<s;
}
№2
#include <iostream>
using namespace std;
int main(){
string a;
char b;
int c=0;
cout << "Ваше число - ";
cin >> a;
cout << "Цифра для поиска - ";
cin >> b;
for (int i=0; i<a.length(); ++i)
if(a[i]==b) ++c;
cout<<"Данная цифра в числе встречается "<< c <<" раз(а)";
}
№3
#include <iostream>
#include <math.h>
using namespace std;
int main(){
double x, y;
cin>>x;
for(int a=-1; a<=2; ++a){
if(a<=1) y=log(abs(a*x+1));
else y=a*a+cos(a*x);
cout<<"a="<<a<<" y="<<y<<endl;
}
}