Відповідь:
#include <iostream>
#include<locale>
int main(){
setlocale(0,"");
int a;
std::cout<<"Введіть число:";
std::cin>>a;
a++;
while(true){
if(a%7==0){
std::cout<<a;
break;
}
}}
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
#include <iostream>
#include<locale>
int main(){
setlocale(0,"");
int a;
std::cout<<"Введіть число:";
std::cin>>a;
a++;
while(true){
if(a%7==0){
std::cout<<a;
break;
}
a++;
}}