Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- ////////////////////////////////////////
- struct Dog
- {
- char color[19];
- int age;
- int weiht;
- int Year;
- };
- ////////////////////////////////////////
- int main()
- {
- Dog h;
- strcpy(h.color,"brown");
- printf("h.age= %d\n",h.age);
- printf("h.weiht=%d\n",h.weiht);
- printf("h.Year= %d\n",h.Year);
- }
- /*
- #include <stdio.h>
- int n = -81;
- ////////////////////////////////////////////////////
- int main()
- {
- // if(n > 0) printf("True \n");
- // else printf("False\n");
- (n > 0) ? printf("True \n") : printf("False\n");
- }
- */
- /* char sz[7][17] = { " " ,
- "Валет" ,
- "Дама" ,
- "Король",
- "Туз" };
- */
- /*
- #include <stdio.h>
- #include <string.h>
- #include <locale.h> // здесь "живёт" setlocale(LC_ALL, "rus");
- void mult(int n);
- ////////////////////////////////////////////////////
- int main()
- {
- setlocale(LC_ALL, "rus");
- for(int i = 2; i <= 14; i++)
- {
- mult(i);
- }
- }
- //////////////////////////////////////////////////////
- void mult(int n)
- {
- char sz[17];
- if(n == 11) strcpy(sz, "Валет ");
- if(n == 12) strcpy(sz, "Дама ");
- if(n == 13) strcpy(sz, "Король");
- if(n == 14) strcpy(sz, "Туз ");
- for(int i = 1; i <= 4; i++)
- {
- if(n < 11)
- switch(i) // масти
- {
- case 1: printf("%d Пики \n", n);
- break;
- case 2: printf("%d Буби \n", n);
- break;
- case 3: printf("%d Черви \n", n);
- break;
- case 4: printf("%d Крести \n", n);
- break;
- }
- else
- switch(i) // масти
- {
- case 1: printf("%s Пики \n", sz);
- break;
- case 2: printf("%s Буби \n", sz);
- break;
- case 3: printf("%s Черви \n", sz);
- break;
- case 4: printf("%s Крести \n", sz);
- break;
- }
- }
- printf(" - - - - - - - \n");
- }
- */
- /*
- #include <stdio.h>
- #include <locale.h> // здесь "живёт" setlocale(LC_ALL, "rus");
- void mult(int a);
- ////////////////////////////////////////////////////
- int main()
- {
- for(int a = 1; a < 10; a++) { mult(a); }
- }
- ////////////////////////////////////////////////////
- void mult(int a)
- {
- for(int i=0 ;i<=10;i++)
- {
- printf("%2d *%2d = %2d\n", i, a, i * a);
- }
- printf(" - - - - - - - \n");
- }
- */
- /*
- #include <iostream>
- using namespace std;
- //////////////////////////////////////////////////////////////////
- int main()
- {
- setlocale(LC_ALL, "rus");
- int a, b, c;
- cout << "1)+ " << " " << " 2) -" << " " << " 3) *" << " " << "4)/" << endl;
- cin >> c;
- cout << "Введите число" << endl;
- cin >> a;
- cout << "Введите второе число" << endl;
- cin >> b;
- switch (c )
- {
- case 1: c = a + b;
- cout << c << endl;
- break;
- case 2: c = a - b;
- cout << c << endl;
- break;
- case 3: c = a * b;
- cout << c << endl;
- break;
- case 4: c = a / b;
- cout << c << endl;
- break;
- default: cout << "Такой операции не соществует" << endl;
- break;
- }
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement