EvoNext
1.79K subscribers
272 photos
16 videos
266 files
484 links
Download Telegram
AAU_COMPUTER_PROGRAMMING_FINAL_EXAM.pdf
318.1 KB
c++ last year's final 💻-AAU🖇 computer programming
1
Media is too big
VIEW IN TELEGRAM
[ Video ]
let's invite you nice youtube channel for learning code in Amharic(if you do not know). <ethio programing>

‼️NOT ❗️ SPONSERED PROMOTION😅😅
Which one of the following unconditional selection statements is used outside a loop?,...
Anonymous Quiz
21%
Exit
34%
Goto
18%
Break
14%
Continue
13%
NONE
👍2
2👍1
//a program to search a number from the array

#include <iostream>
using namespace std;

int main()
{
int rollno[10]={13,34,46,56,35,87,54,9,22,23};
int r,m=0;
cout <<"rollno is given below as follows: \n";
for(int i=0;i<10;i++){
cout <<rollno[i] <<" ";
}
cout <<"\n enter your rollno from the given: \n";
cin >>r;
for(int i=0;i<10;i++)
{
if(r==rollno[i]){
cout <<"your rollno is found at: " << i+1;
m=1;
}

}if(m==0){
cout <<"rollno is not found!";
}
return 0;
}




https://t.me/PROGRAMINGLANGUAGES1
🔥2
2
#QUESTION TO ANSWER IN C++

Write a program that prompts a user to enter the number of second elapsed for an event and converts this to m hours, n minute and p seconds. For example if the user enter 7840, the program display 2:10:40.


THE ANSWER IS LOADING....
https://t.me/PROGRAMINGLANGUAGES1
3
ANSWER for ✍️👉🏿https://t.me/PROGRAMINGLANGUAGES1/162




#include <iostream>
using namespace std;

int main()
{
int x;
cout << "inter time elapsed in second:" << endl;

cin >> x ;


int m = x/3600;

x = x% 3600;
int n = x/60 ;

x = x% 60;
int p = x;

cout << m <<"hours" <<":"<< n <<"minutes"<<":" << p <<"seconds!"<< endl;




return 0;

}
👍2
Channel photo updated
image_2022-01-15_11-24-13.png
142.8 KB
#DO YOU KNOW THIS ENGINEER?
👍 —-> YES


👎—--> NO

Good night !
👎6👍2
👍2
#more materials to study especially for IS & CS courses👌

👉🏿📚https://t.me/PROGRAMINGLANGUAGES1
👍2