Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int foo(int);
- ///////////////////////////////////////////////////////////////
- int main()
- {
- int n = 27,
- nSerial = n/7,
- nOstatoc = n%7,
- nSumma = 0;
- nSumma = nSerial * 5845;
- nSumma += foo(nOstatoc);
- printf("nSumma = %d \n", nSumma);
- }
- /////////////////////////////////////////////////////////////////
- int foo(int nOstatoc)
- {
- switch(nOstatoc)
- {
- case 0: return 0;
- case 1: return 1000;
- case 2: return 1945;
- case 3: return 2835;
- case 4: return 3670;
- case 5: return 4450;
- case 6: return 5175;
- }
- }
- /*
- #include <stdio.h>
- ///////////////////////////////////////////////////////////////
- int main()
- {
- int n = 27;
- int nSerial = n/7;
- int nOstatoc = n%7;
- int nSumma = 0;
- nSumma = nSerial * 5845;
- switch(nOstatoc)
- {
- case 0: nSumma += 0; break;
- case 1: nSumma += 1000; break;
- case 2: nSumma += 1945; break;
- case 3: nSumma += 2835; break;
- case 4: nSumma += 3670; break;
- case 5: nSumma += 4450; break;
- case 6: nSumma += 5175; break;
- }
- printf("nSumma = %d \n", nSumma);
- }
- */
- // printf("nSerial = %d \n", nSerial);
- // printf("nOstatoc = %d \n", nOstatoc);
- // scanf("%d", &n);
- // //int
- // printf("2 / 7 = %f \n", (float)2/(float)7);
- /*
- #include <stdio.h>
- int nArr[10][10];
- // = {0};
- void monitor();
- ///////////////////////////////////////////////////////////////
- int main()
- {
- for(int i = 0; i < 10; i++)
- {
- nArr[i][4] = 17;
- }
- monitor();
- return 0;
- }
- //////////////////////////////////////////////////////////////
- void monitor()
- {
- for(int i = 0; i < 10; i++) {
- for(int x = 0; x < 10; x++) {
- printf("%d, ", nArr[i][x]);
- } printf("\n");
- }
- }
- */
- /*
- //////////////////////////////////////////////////////////////
- void monitor()
- {
- for(int i = 0; i < 10; i++) {
- for(int x = 0; x < 10; x++)
- {
- printf("nArr[%d][%d] = %d\n", i, x, nArr[i][x]);
- } printf("\n"); }
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement