Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 1) A+B ( https://acmp.ru/asp/do/index.asp?main=task&id_course=1&id_section=1&id_topic=26&id_problem=142)
- Решение:
- #include <iostream>
- using namespace std;
- int main() {
- int a, b;
- cin >> a >> b;
- cout << a + b;
- }
- 2)Неглухой телефон ( https://acmp.ru/asp/do/index.asp?main=task&id_course=1&id_section=1&id_topic=26&id_problem=143 )
- Решение:
- #include <iostream>
- using namespace std;
- int main() {
- int a;
- cin >> a;
- cout << a;
- }
- 3)Бисер ( https://acmp.ru/asp/do/index.asp?main=task&id_course=1&id_section=1&id_topic=26&id_problem=144)
- Решение:
- #include <iostream>
- using namespace std;
- int main(){
- int n;
- cin >> n;
- cout << n+1;
- return 0;
- }
- 4)Эния ( https://acmp.ru/asp/do/index.asp?main=task&id_course=1&id_section=1&id_topic=26&id_problem=145)
- Решение:
- #include <iostream>
- using namespace std;
- int main() {
- int a,b,c;
- cin >> a >> b >> c;
- cout << a*b*c*2;
- }
- 5) Следующее и предыдущее( https://acmp.ru/asp/do/index.asp?main=task&id_course=1&id_section=1&id_topic=26&id_problem=152 )
- Решение:
- #include <iostream>
- using namespace std;
- int main() {
- int a, b;
- cin >> a;
- cout << "The next number for the number " << a << " is " << a+1 << '.' << endl;
- cout << "The previous number for the number " << a << " is " << a-1 << '.' << endl;
- }
- 6) Два бандита ( https://acmp.ru/asp/do/index.asp?main=task&id_course=1&id_section=1&id_topic=26&id_problem=146 )
- Решение:
- #include <iostream>
- using namespace std;
- int main()
- {
- int a,b;
- cin >> a >> b;
- int c = a + b - 1;
- cout <<c - a << " " << c - b ;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement