User
Pass
2FA
 
 

Tema Info
Go to page Previous  1, 2    
 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> Trash -> Homework zone
Author Message8251
-ChEvRoLeT-

[Mentally Stable]



Status: Offline
(since 19-12-2013 16:50)
Joined: 10 Dec 2013
Posts: 18, Topics: 3
Location: Romania

Reputation: 29.3
Votes: 3

Post Posted: 11-12-2013, 20:49:02 | Translate post to: ... (Click for more languages)

ce exerciti -


0 0
  
Back to top
View user's profile Send private message
Khajiit

[Away]



Status: Offline
(since 01-04-2019 20:33)
Joined: 19 Jun 2013
Posts: 3428, Topics: 110
Location: Away for a long time.

Reputation: 48.4
Votes: 145

          Battletag: postrow.ID_BATTLE_NET}  am-nevoie-de-iconite-la-profil 
Post Posted: 11-12-2013, 20:57:34 | Translate post to: ... (Click for more languages)

Poti sa verifici inca odata cu exactitate exercitiile? Mi se pare majoritatea incomplete si nu prea ti le pot rezolva. Scrie cu exactitate cerinta te rog.
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Csvyo

[UNSTOPPABLE forever!]



Status: Offline
(since 18-10-2019 11:54)
Joined: 12 Jun 2012
Posts: 7694, Topics: 102
Location: Retired

Reputation: 395.4
Votes: 92

 
Post Posted: 11-12-2013, 21:02:05 | Translate post to: ... (Click for more languages)

Pai aia e cerinta completa.

So many words untold...

0 0
  
Back to top
View user's profile Send private message
Khajiit

[Away]



Status: Offline
(since 01-04-2019 20:33)
Joined: 19 Jun 2013
Posts: 3428, Topics: 110
Location: Away for a long time.

Reputation: 48.4
Votes: 145

          Battletag: postrow.ID_BATTLE_NET}  am-nevoie-de-iconite-la-profil 
Post Posted: 11-12-2013, 21:06:29 | Translate post to: ... (Click for more languages)

Am gasit alte variante mai complexe...oricum ar fi, ce ai tu acolo este pentru clasa a 9 a, cand se fac structurile repetitive cat timp/ for ...- ai tema de facut asfel de exercitii sau ce?
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Csvyo

[UNSTOPPABLE forever!]



Status: Offline
(since 18-10-2019 11:54)
Joined: 12 Jun 2012
Posts: 7694, Topics: 102
Location: Retired

Reputation: 395.4
Votes: 92

 
Post Posted: 11-12-2013, 21:34:11 | Translate post to: ... (Click for more languages)

Fa-le cum le-ai facut tu prima data.In c++ nu in pseudocod adica program.

So many words untold...

0 0
  
Back to top
View user's profile Send private message
Khajiit

[Away]



Status: Offline
(since 01-04-2019 20:33)
Joined: 19 Jun 2013
Posts: 3428, Topics: 110
Location: Away for a long time.

Reputation: 48.4
Votes: 145

          Battletag: postrow.ID_BATTLE_NET}  am-nevoie-de-iconite-la-profil 
Post Posted: 11-12-2013, 22:29:15 | Translate post to: ... (Click for more languages)

- Pai da, numai ca e bataie de cap pentru mine. - Ma bat intrebarile. Hai ca mai incerc sa vad ce pot face. Sunt cam bulversat:)) si nu ma pot concentra.

Posturi unite automat, 11-12-2013, 21:53:11

165.Scrieþi un program care sã citeascã mai multe numere întregi, pânã la întâlnirea lui zero, ºi sã determine cel mai mare ºi cel mai mic numãr citit.
Exemplu. Dacã numerele introduse sunt 2, 9, 32, 5, -5, 8, 0 atunci maximul este 32 iar minimul –5.
Code:

#include <iostream.h>
void main ()
{ int mini=9999,max=0,n;

while(n!=0) {cout<<"n= "; cin>>n;
       if(n!=0) {
        if(n<mini) mini=n;
        if(n>max) max=n;}}
cout<<mini<<endl;
cout<<max;

}


am fixat o mica eroare.
Revin cu edit pentru alta problema.

Posturi unite automat, 11-12-2013, 22:12:29

141. Se citesc n numere întregi de la tastaturã. Sã se afiºeze suma primelor m numere negative.
Exemplu. Pentru n=16, m=5 ºi numerele 1,6,-2,4,-3,7,9,10,-7,-9,11,-1, 19,-8,-20,41 se obþine suma –22.
Code:

#include <iostream.h>
void main ()
{     { int x,suma=0;
   unsigned n,m,i,j;
   cin>>n;
   cin>>m;
for(i=0;i<n;i++) {cin>>x;
                         if(x<0 && i<m) suma=suma+x;}

cout<<suma<<endl;

}


Posturi unite automat, 11-12-2013, 22:29:15

170. Se considerã n valori întregi. Memorând numai câte una, sã se determine valoarea cea mai mare negativã ºi valoarea cea mai micã pozitivã, specificând dacã sunt sau nu unice.
Exemplu. Pentru n=11 ºi numerele 2,6,-5,9,-7,1,3,-2,55,-6,1 se vor afiºa valorile -2 ºi 1, prima fiind unicã în timp ce 1 apare de 2 ori.

Code:

#include <iostream.h>
void main ()
 {
int x,n,valoarea_mare_negativa=0;
   unsigned valoarea_mica_pozitiva=9999, nr=0,i;

   cin>>n;
for(i=0;i<n;i++) {cin>>x;
                           if(x<valoarea_mare_negativa && x<0) valoarea_mare_negativa=x;
                           if(x<=valoarea_mica_pozitiva) { valoarea_mica_pozitiva=x; nr++;}
                         }
cout<<valoarea_mare_negativa<<" "<<valoarea_mica_pozitiva<<","<<valoarea_mica_pozitiva<<"apare de "<<nr;

}

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Khajiit

[Away]



Status: Offline
(since 01-04-2019 20:33)
Joined: 19 Jun 2013
Posts: 3428, Topics: 110
Location: Away for a long time.

Reputation: 48.4
Votes: 145

          Battletag: postrow.ID_BATTLE_NET}  am-nevoie-de-iconite-la-profil 
Post Posted: 17-12-2013, 17:18:30 | Translate post to: ... (Click for more languages)

Deci, mai ai nevoie de ele facute?-
0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
nature10

[Maniac]



Status: Offline
(since 20-10-2019 11:04)
Joined: 30 Oct 2012
Posts: 1039, Topics: 39
Location: Piatra Neamt

Reputation: 245.6
Votes: 52

Post Posted: 19-12-2013, 11:54:08 | Translate post to: ... (Click for more languages)

Fa-le cum le-ai facut tu prima data.In c++ nu in pseudocod adica program.
0 0
  
Back to top
View user's profile Send private message
Khajiit

[Away]



Status: Offline
(since 01-04-2019 20:33)
Joined: 19 Jun 2013
Posts: 3428, Topics: 110
Location: Away for a long time.

Reputation: 48.4
Votes: 145

          Battletag: postrow.ID_BATTLE_NET}  am-nevoie-de-iconite-la-profil 
Post Posted: 19-12-2013, 13:56:45 | Translate post to: ... (Click for more languages)

Sa inteleg ca ai si tu nevoie de ele?
/@nature10

0 0
  
Back to top
View user's profile Send private message Yahoo! Messenger ID
Fough

[Nutella Lover]



Status: Offline
(since 13-12-2019 11:16)
Joined: 12 Dec 2012
Posts: 1046, Topics: 193
Location: Gotham

Reputation: 393.9
Votes: 153

   
Post Posted: 04-01-2014, 03:18:25 | Translate post to: ... (Click for more languages)

ce exercitii de 2 lei Sigh...daca mai ai nevoie de rezolvarea la vreunul lasa aici mesaj.


0 0
  
Back to top
View user's profile Send private message

  Topic locked


Topic is closed, you cannot post any messages in it anymore




 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Freakz Forum Index -> Trash Bin -> Trash -> Homework zone  
Go to page Previous  1, 2    


The time now is 27-04-2024, 16:38:18
Copyright info

Based on phpBB ro/com
B

 
 
 







I forgot my password


This message appears only once, so
like us now until it's too late ! :D
x