Quick actions

cmd+k|ctrl+k

Navigation

Languages

Lab3 (17)

Snippet info

Language

Cpp

Visibility

public

Author

buteskul5.6

Created

2018-09-30T20:02:27Z

Updated

2018-09-30T20:02:27Z

#include<iostream>
#include<cmath>

using namespace std;

int main()
{
	setlocale(LC_ALL, "ru");

	int digit;

	cout << "Введите целое число" << endl;
	cin >> digit;

	if (digit % 3 == 0)
	{
		cout << "Делиться";
	}
	else
	{
		cout << "Не делиться";
	}
	
}
INFO