test
This commit is contained in:
parent
37776af5db
commit
ab03d5f10c
4045 changed files with 286212 additions and 3 deletions
23
.config/Code/User/History/-50ff426c/3Z3H.cpp
Normal file
23
.config/Code/User/History/-50ff426c/3Z3H.cpp
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
Rafay Ahmad
|
||||
23I-2526
|
||||
*/
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
void print(char c, int i){
|
||||
if(i>=0){
|
||||
cout<<c;
|
||||
print(c, i-1);
|
||||
}
|
||||
}
|
||||
void pattern(int n){
|
||||
|
||||
}
|
||||
|
||||
int main(){
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
26
.config/Code/User/History/-50ff426c/9e4K.cpp
Normal file
26
.config/Code/User/History/-50ff426c/9e4K.cpp
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
Rafay Ahmad
|
||||
23I-2526
|
||||
*/
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
void print(char c, int i){
|
||||
if(i>=0){
|
||||
cout<<c;
|
||||
print(c, i-1);
|
||||
}
|
||||
}
|
||||
void helper(int i){
|
||||
|
||||
}
|
||||
void pattern(int n){
|
||||
|
||||
}
|
||||
|
||||
int main(){
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
0
.config/Code/User/History/-50ff426c/Amgb.cpp
Normal file
0
.config/Code/User/History/-50ff426c/Amgb.cpp
Normal file
30
.config/Code/User/History/-50ff426c/CIzd.cpp
Normal file
30
.config/Code/User/History/-50ff426c/CIzd.cpp
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
Rafay Ahmad
|
||||
23I-2526
|
||||
*/
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
void print(char c, int i){
|
||||
if(i>=0){
|
||||
cout<<c;
|
||||
print(c, i-1);
|
||||
}
|
||||
}
|
||||
void helper(int i){
|
||||
|
||||
}
|
||||
void pattern(int n){
|
||||
if(n>0){
|
||||
print('*', n);
|
||||
cout<<endl;
|
||||
pattern(n-1);
|
||||
}
|
||||
}
|
||||
|
||||
int main(){
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
13
.config/Code/User/History/-50ff426c/HJCN.cpp
Normal file
13
.config/Code/User/History/-50ff426c/HJCN.cpp
Normal file
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
Rafay Ahmad
|
||||
23I-2526
|
||||
*/
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
int main(){
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
17
.config/Code/User/History/-50ff426c/KlTp.cpp
Normal file
17
.config/Code/User/History/-50ff426c/KlTp.cpp
Normal file
|
@ -0,0 +1,17 @@
|
|||
/*
|
||||
Rafay Ahmad
|
||||
23I-2526
|
||||
*/
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
void print(char c, int i){
|
||||
|
||||
}
|
||||
|
||||
int main(){
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
29
.config/Code/User/History/-50ff426c/NSMB.cpp
Normal file
29
.config/Code/User/History/-50ff426c/NSMB.cpp
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
Rafay Ahmad
|
||||
23I-2526
|
||||
*/
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
void print(char c, int i){
|
||||
if(i>=0){
|
||||
cout<<c;
|
||||
print(c, i-1);
|
||||
}
|
||||
}
|
||||
void helper(int i){
|
||||
|
||||
}
|
||||
void pattern(int n){
|
||||
if(n>0){
|
||||
print('*', n);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
int main(){
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
20
.config/Code/User/History/-50ff426c/S1a9.cpp
Normal file
20
.config/Code/User/History/-50ff426c/S1a9.cpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
/*
|
||||
Rafay Ahmad
|
||||
23I-2526
|
||||
*/
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
void print(char c, int i){
|
||||
if(i>=0){
|
||||
cout<<c;
|
||||
print(c, i-1);
|
||||
}
|
||||
}
|
||||
|
||||
int main(){
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
30
.config/Code/User/History/-50ff426c/ap8G.cpp
Normal file
30
.config/Code/User/History/-50ff426c/ap8G.cpp
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
Rafay Ahmad
|
||||
23I-2526
|
||||
*/
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
void print(char c, int i){
|
||||
if(i>=0){
|
||||
cout<<c;
|
||||
print(c, i-1);
|
||||
}
|
||||
}
|
||||
void helper(int i){
|
||||
|
||||
}
|
||||
void pattern(int n){
|
||||
if(n>0){
|
||||
print('*', n);
|
||||
cout<<endl;
|
||||
pattern(n-1);
|
||||
}
|
||||
}
|
||||
|
||||
int main(){
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
1
.config/Code/User/History/-50ff426c/entries.json
Normal file
1
.config/Code/User/History/-50ff426c/entries.json
Normal file
|
@ -0,0 +1 @@
|
|||
{"version":1,"resource":"file:///home/rafayahmad/Stuff/OOP%20Assignment%2004/a.cpp","entries":[{"id":"Amgb.cpp","source":"textFileCreate.source","timestamp":1713420096846},{"id":"HJCN.cpp","timestamp":1713420116389},{"id":"KlTp.cpp","timestamp":1713420141036},{"id":"S1a9.cpp","timestamp":1713420179377},{"id":"3Z3H.cpp","timestamp":1713420200698},{"id":"9e4K.cpp","timestamp":1713420222510},{"id":"lfcj.cpp","timestamp":1713420237461},{"id":"xprA.cpp","timestamp":1713420261670},{"id":"NSMB.cpp","timestamp":1713420288668},{"id":"oIfm.cpp","timestamp":1713420309168},{"id":"CIzd.cpp","timestamp":1713420328465},{"id":"ap8G.cpp","timestamp":1713420588834}]}
|
26
.config/Code/User/History/-50ff426c/lfcj.cpp
Normal file
26
.config/Code/User/History/-50ff426c/lfcj.cpp
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
Rafay Ahmad
|
||||
23I-2526
|
||||
*/
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
void print(char c, int i){
|
||||
if(i>=0){
|
||||
cout<<c;
|
||||
print(c, i-1);
|
||||
}
|
||||
}
|
||||
void helper(int i){
|
||||
|
||||
}
|
||||
void pattern(int n){
|
||||
|
||||
}
|
||||
|
||||
int main(){
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
29
.config/Code/User/History/-50ff426c/oIfm.cpp
Normal file
29
.config/Code/User/History/-50ff426c/oIfm.cpp
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*
|
||||
Rafay Ahmad
|
||||
23I-2526
|
||||
*/
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
void print(char c, int i){
|
||||
if(i>=0){
|
||||
cout<<c;
|
||||
print(c, i-1);
|
||||
}
|
||||
}
|
||||
void helper(int i){
|
||||
|
||||
}
|
||||
void pattern(int n){
|
||||
if(n>0){
|
||||
print('*', n);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
int main(){
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
26
.config/Code/User/History/-50ff426c/xprA.cpp
Normal file
26
.config/Code/User/History/-50ff426c/xprA.cpp
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
Rafay Ahmad
|
||||
23I-2526
|
||||
*/
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
void print(char c, int i){
|
||||
if(i>=0){
|
||||
cout<<c;
|
||||
print(c, i-1);
|
||||
}
|
||||
}
|
||||
void helper(int i){
|
||||
|
||||
}
|
||||
void pattern(int n){
|
||||
print('*', n);
|
||||
}
|
||||
|
||||
int main(){
|
||||
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue