Quick actions

cmd+k|ctrl+k

Navigation

Languages

lab5 (143)

Snippet info

Language

Cpp

Visibility

public

Author

buteskul5.6

Created

2018-10-27T13:06:54Z

Updated

2018-10-31T09:57:10Z

#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