Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab5 (143)

Snippet info

Language

Cpp

Visibility

public

Author

andrusus.korotkovus

Created

2018-10-30T06:47:02Z

Updated

2018-10-30T06:47:02Z

#include <iostream>

using namespace std;

int main()
{
    setlocale(LC_ALL, "ru");
    
	int n, N=0, k=0;
	cout << "Введите n" << endl;
	cin >> n;
	cout << endl;

	for (int i = 1; i < n; i++)
	{
		if (i % 11 != 0)
		{
			k++;					
		}
		N = k;		
	}
	cout << "Результат - " << N << endl;
	return 0;
}
INFO