Skip to content

Instantly share code, notes, and snippets.

View GN0509's full-sized avatar

GN0509

  • Joined Aug 30, 2025
View GitHub Profile
@GN0509
GN0509 / 2.4
Created September 4, 2025 15:33
#include <iostream>
using namespace std;
int a= 6;
int b= 8;
int r= 0;
int suma()
{
r=a+b;
cout<<"La suma es:
"<<r;
@GN0509
GN0509 / 2.3
Created September 4, 2025 15:32
#include <iostream>
using namespace std;
#include <iostream>
int a= 6;
int b= 8;
int r= 0;
int main()
{
r=a+b;
cout<<"La suma es:
@GN0509
GN0509 / 2.2
Created September 4, 2025 15:32
#include <iostream>
int a= 6;
int b= 8;
int r= 0;
int main()
{
r=a+b;
std::cout<<"La suma es:
"<<r;
@GN0509
GN0509 / 1.2
Created September 4, 2025 15:30
#include
<iostream>
using namespace
std;
int main()
{
cout<<"Hola";
return 0;
}
@GN0509
GN0509 / 1.1
Created September 4, 2025 15:30
#include <iostream>
int main()
{
std::cout<<"Hola";
return 0;
}