В лаборатории имеется 3 амперметра с характеристиками: 1=2,0%; Iк1=20 А; 2=0,5%; Iк2=20 А; 3=1,5%; Iк3=5 А. Записать результат измерения силы тока Ĩ=4 А каждым прибором.
#include <iostream> using std::cout; using std::cin; using std::endl; using std::fixed; #include <cstring> using std::strcpy; #include <iomanip> using std::setprecision;
int main() { char s[100], temp[100]; int counter = 0, counter1 = 0;
cout << "Enter the string: "; cin.getline(s, 100);
strcpy(temp, s);
//Определяем общее количество слов //и количество слов с буквай d char *ptr = strtok(temp, " "); while(ptr) { for(int i = 0; *(ptr + i) != NULL; i++) { if(*(ptr + i) == 'd') { counter1++;
СH3 - СH2 - СH = СH - СH3- начальная формула, пентен-2
СH3 - СH2-СH2 - СH = СH - СH3- гомолог, гексен-2
СH2= СH- СH2- СH2 - СH3- изомер, пентен-1
СH3 - СH2 - СH = СH - СH3 +10О2 =( вообще стрелочка ставится и над стреплочкой температура t)= 10H2O + 5CO2 -р-я горения
СH3 - СH2 - СH = СH - СH3 +Br2 =( стрелочка и над стреплочкой hv(аш ню или свет))=СH3 - СH2 - СHBr - СHBr - СH3- р-я бромирования
СH3 - СH2 - СH = СH - СH3 +H2 =( стрелочка и над стреплочкой kt(катаризатор и температура)=СH3 - СH2 - СH2 - СH2 - СH3- р-я гидрирования
вот и все...)
#include <iostream>
using std::cout;
using std::cin;
using std::endl;
using std::fixed;
#include <cstring>
using std::strcpy;
#include <iomanip>
using std::setprecision;
int main()
{
char s[100], temp[100];
int counter = 0, counter1 = 0;
cout << "Enter the string: ";
cin.getline(s, 100);
strcpy(temp, s);
//Определяем общее количество слов
//и количество слов с буквай d
char *ptr = strtok(temp, " ");
while(ptr)
{
for(int i = 0; *(ptr + i) != NULL; i++)
{
if(*(ptr + i) == 'd')
{
counter1++;
break;
}
}
counter++;
ptr = strtok(NULL, " ");
}
cout << setprecision(2) << fixed << (counter1 * 100 / double(counter)) << '%' << endl;
return 0;
}