Quick Sorting Character in Alphabetical Order
AI Programming @freecodecs
As always:
Have a Lit π₯ Practice Folks ππ½
AI Programming @freecodecs
As always:
Have a Lit π₯ Practice Folks ππ½
πβ¬οΈπ
Above 3 pictures shows student registration with object oriented code using class and sorting out students alphabetically.
NB. Class Inheritance
To add students course and mark use below code:
Class Mark {
Public:
float quiz, mid, final, total;
};
Class Course: Public Mark{
Protected:
String code, title;
Int credit_hour;
Mark course_exam[MAX];
};
//Change student class header to
Class student: Public Course{
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
Above 3 pictures shows student registration with object oriented code using class and sorting out students alphabetically.
NB. Class Inheritance
To add students course and mark use below code:
Class Mark {
Public:
float quiz, mid, final, total;
};
Class Course: Public Mark{
Protected:
String code, title;
Int credit_hour;
Mark course_exam[MAX];
};
//Change student class header to
Class student: Public Course{
AI Programming @freecodecs
For this time:
Have a Lit π₯ Figuring out π€
AI Programming pinned Β«πβ¬οΈπ Above 3 pictures shows student registration with object oriented code using class and sorting out students alphabetically. NB. Class Inheritance To add students course and mark use below code: Class Mark { Public: float quiz, mid, finalβ¦Β»
πWelcome toπ
An artificial intelligence free resource channel for students and anyone who wants to learn solve problems.
β’ C++ β’ Java β’ PHP β’ Oracle β’ C# β’
@freecodecs
πPROGRAMMING
πCracked SOFTWARE & APPS
πTIPS & TRICKS
πPROGRAMMING PROJECT
ππjoin the channel & stay with us for more lessons @freecodecs
An artificial intelligence free resource channel for students and anyone who wants to learn solve problems.
β’ C++ β’ Java β’ PHP β’ Oracle β’ C# β’
@freecodecs
πPROGRAMMING
πCracked SOFTWARE & APPS
πTIPS & TRICKS
πPROGRAMMING PROJECT
ππjoin the channel & stay with us for more lessons @freecodecs
AI Programming pinned Β«To avoid complications we will post you the questions from 1 upto 10 with some extra notes attached as a screenshoot β’ we will post the other 3 qest. tmw. β’Β»
Icecream_Screen_Recorder_v5_Activated.zip
53.8 MB
Icecream Screen Recorder v5
Activated. @freecodecs
Capture screen or take screenshots of the full screen or selected areas. Use "Draw Panel" for instructions, hide desktop icons and much more.
Activated. @freecodecs
Capture screen or take screenshots of the full screen or selected areas. Use "Draw Panel" for instructions, hide desktop icons and much more.
π2
Icecream Screen Recorder v5
Activated. @freecodecs
Capture screen or take screenshots of the full screen or selected areas. Use "Draw Panel" for instructions, hide desktop icons and much more.
Activated. @freecodecs
Capture screen or take screenshots of the full screen or selected areas. Use "Draw Panel" for instructions, hide desktop icons and much more.
Int power(int x, int n){
Int result;
If(n==1)
result *= power(x, n-1);
Return result;
}
Int main(){
Int x=2;
Int n=3;
Cout<<Power(x,n);
}
Int result;
If(n==1)
result *= power(x, n-1);
Return result;
}
Int main(){
Int x=2;
Int n=3;
Cout<<Power(x,n);
}
Int Average(int a, int b, int c)
{
Int temp;
Temp= a+b+c;
Temp /= 3;
}
Int main()
{
Int a=10, b=20, c=30;
Cout<<Average(a,b,c);
}
{
Int temp;
Temp= a+b+c;
Temp /= 3;
}
Int main()
{
Int a=10, b=20, c=30;
Cout<<Average(a,b,c);
}