Posts by Nope Nope • 93 points
3 posts
-
6
votes5
answers7439
viewsQ: Exercise with odd pairs in C
Statement - Make an algorithm that reads a set of numbers (X) and indicate the amount of even numbers (Qpares) and the amount of odd numbers (Qimpares) read. Note: Entering values ends when the user…
-
1
votes1
answer43
viewsQ: Simple While Cycles
#include <stdio.h> main(){ int cont=15; while(cont<=200){ printf("%d\n",&cont); cont++; } } Supposedly the counter should start with the value 15 and go showing its value by adding 1 at…
-
-2
votes1
answer3772
viewsQ: Where is the error? "system is not declared in this Scope'
I’m supposed to do this https://gyazo.com/ae18e6b29f3ffc73c02f518a73145cc4 I drew this up https://gyazo.com/3729ab0e204f3dc49fff3ec9773155eb But for the most part of 15 years old he won’t let me…