Advertisement
1nikitas

дз по икт 1

Sep 20th, 2019
407
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.70 KB | None | 0 0
  1. 1) A+B ( https://acmp.ru/asp/do/index.asp?main=task&id_course=1&id_section=1&id_topic=26&id_problem=142)
  2.  
  3. Решение:
  4.  
  5. #include <iostream>
  6. using namespace std;
  7.  
  8. int main() {
  9.   int a, b;
  10.   cin >> a >> b;
  11.   cout << a + b;
  12. }
  13.  
  14. 2)Неглухой телефон ( https://acmp.ru/asp/do/index.asp?main=task&id_course=1&id_section=1&id_topic=26&id_problem=143 )
  15.  
  16. Решение:
  17.  
  18. #include <iostream>
  19. using namespace std;
  20.    
  21. int main() {
  22.   int a;
  23.   cin >> a;
  24.   cout << a;
  25. }
  26.  
  27. 3)Бисер ( https://acmp.ru/asp/do/index.asp?main=task&id_course=1&id_section=1&id_topic=26&id_problem=144)
  28.  
  29. Решение:
  30.  
  31. #include <iostream>
  32. using namespace std;
  33.  
  34. int main(){
  35.   int n;
  36.   cin >> n;  
  37.   cout << n+1;  
  38.   return 0;
  39. }
  40.  
  41. 4)Эния ( https://acmp.ru/asp/do/index.asp?main=task&id_course=1&id_section=1&id_topic=26&id_problem=145)
  42.  
  43. Решение:
  44.  
  45. #include <iostream>
  46. using namespace std;
  47.    
  48. int main() {
  49.   int a,b,c;
  50.   cin >> a >> b >> c;
  51.   cout << a*b*c*2;
  52. }
  53.  
  54. 5) Следующее и предыдущее( https://acmp.ru/asp/do/index.asp?main=task&id_course=1&id_section=1&id_topic=26&id_problem=152 )
  55.  
  56. Решение:
  57.  
  58. #include <iostream>
  59. using namespace std;
  60.    
  61. int main() {
  62.   int a, b;
  63.   cin >> a;
  64.   cout << "The next number for the number " << a << " is " << a+1 << '.' << endl;
  65.   cout << "The previous number for the number " << a << " is " << a-1 << '.' << endl;
  66. }
  67.  
  68. 6) Два бандита ( https://acmp.ru/asp/do/index.asp?main=task&id_course=1&id_section=1&id_topic=26&id_problem=146 )
  69.  
  70. Решение:
  71.  
  72. #include <iostream>
  73. using namespace std;
  74.  
  75. int main()
  76. {
  77.     int a,b;
  78.     cin >> a >> b;
  79.     int c = a + b - 1;
  80.     cout <<c - a << " " << c - b ;
  81. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement